:root {
  --plx-ink: #0a1c30;
  --plx-ink-2: #132a45;
  --plx-blue: #315f98;
  --plx-blue-soft: #e9eff6;
  --plx-gold: #c4933f;
  --plx-gold-dark: #9b6c23;
  --plx-paper: #f4f1ea;
  --plx-paper-2: #ebe7de;
  --plx-white: #ffffff;
  --plx-text: #172337;
  --plx-muted: #677181;
  --plx-line: #dce1e7;
  --plx-success: #1f714b;
  --plx-error: #a53a31;
  --plx-radius: 16px;
  --plx-radius-lg: 28px;
  --plx-shadow: 0 22px 70px rgba(10, 28, 48, 0.11);
  --plx-container: min(1440px, calc(100vw - 64px));
  --plx-font: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--plx-ink);
}

body.plx-body {
  margin: 0;
  background: var(--plx-white);
  color: var(--plx-text);
  font-family: var(--plx-font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body.plx-menu-open {
  overflow: hidden;
}

.plx-body img {
  display: block;
  max-width: 100%;
}

.plx-body a {
  color: inherit;
  text-decoration: none;
}

.plx-body button,
.plx-body input,
.plx-body textarea,
.plx-body select {
  color: inherit;
  font: inherit;
}

.plx-body button,
.plx-body a,
.plx-body input,
.plx-body textarea {
  outline-offset: 4px;
}

.plx-body :focus-visible {
  outline: 3px solid #5d8ac1;
}

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

.plx-container--narrow {
  max-width: 900px;
}

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

.plx-skip-link {
  position: fixed;
  z-index: 100001;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--plx-white);
  color: var(--plx-ink);
  font-weight: 700;
}

.plx-skip-link:focus {
  transform: translateY(0);
}

.plx-header {
  position: sticky;
  z-index: 9990;
  top: 0;
  border-bottom: 1px solid rgba(10, 28, 48, 0.09);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.plx-header__inner {
  display: flex;
  width: var(--plx-container);
  min-height: 84px;
  margin-inline: auto;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.plx-brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 178px;
  color: var(--plx-ink);
}

.plx-brand__name {
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
}

.plx-brand__tag {
  margin-top: 7px;
  color: #748094;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1;
}

.plx-header__navwrap {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plx-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.plx-nav a {
  position: relative;
  padding-block: 30px;
  color: #243348;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.plx-nav a:hover::after,
.plx-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.plx-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plx-languages {
  display: flex;
  padding-right: 14px;
  border-right: 1px solid var(--plx-line);
  gap: 4px;
}

.plx-languages a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: var(--plx-muted);
  font-size: 11px;
  font-weight: 800;
}

.plx-languages a[aria-current="true"] {
  background: var(--plx-paper);
  color: var(--plx-ink);
}

.plx-cart-link {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--plx-ink);
}

.plx-cart-link svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.plx-cart-link span {
  position: absolute;
  top: 0;
  right: -2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--plx-gold);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.plx-menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.plx-menu-toggle > span:not(.plx-sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--plx-ink);
}

.plx-btn {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.plx-btn:hover {
  transform: translateY(-1px);
}

.plx-btn svg,
.plx-text-link svg,
.plx-path-card > svg,
.plx-contact-paths > a > svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.plx-btn--primary {
  background: var(--plx-ink);
  color: #fff !important;
}

.plx-btn--primary:hover {
  background: var(--plx-ink-2);
}

.plx-btn--secondary {
  border-color: #bfc7d1;
  background: #fff;
  color: var(--plx-ink);
}

.plx-btn--secondary:hover {
  border-color: var(--plx-ink);
}

.plx-btn--gold {
  background: var(--plx-gold);
  color: #fff !important;
}

.plx-btn--gold:hover {
  background: var(--plx-gold-dark);
}

.plx-btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.plx-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.plx-btn--light {
  border-color: rgba(255, 255, 255, 0.3);
  background: #fff;
  color: var(--plx-ink) !important;
}

.plx-btn--large {
  min-height: 58px;
  padding-inline: 30px;
}

.plx-btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.plx-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--plx-gold-dark);
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
}

.plx-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--plx-gold-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.plx-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--plx-ink) 0%, var(--plx-ink) 52%, var(--plx-paper) 52%),
    var(--plx-ink);
}

.plx-hero__grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.02fr 0.98fr;
}

.plx-hero__copy {
  display: flex;
  padding: clamp(72px, 8vw, 126px) clamp(48px, 6vw, 96px) clamp(72px, 8vw, 126px) 0;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.plx-hero__copy .plx-eyebrow {
  color: #d7aa5b;
}

.plx-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 4.6vw, 74px);
  font-weight: 780;
  letter-spacing: -0.046em;
  line-height: 0.98;
}

.plx-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.plx-hero__actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.plx-hero__note {
  display: flex;
  max-width: 620px;
  margin: 26px 0 0;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  gap: 10px;
}

.plx-hero__note svg {
  width: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: #d7aa5b;
  stroke-width: 2;
}

.plx-hero__visual {
  position: relative;
  min-width: 0;
  background: var(--plx-paper);
}

.plx-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plx-hero__visual-card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  padding: 16px 18px;
  align-items: center;
  border: 1px solid rgba(10, 28, 48, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(10, 28, 48, 0.12);
  gap: 12px;
  backdrop-filter: blur(12px);
}

.plx-hero__visual-card svg {
  width: 28px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 1.5;
}

.plx-hero__visual-card div {
  display: flex;
  flex-direction: column;
}

.plx-hero__visual-card strong {
  font-size: 13px;
}

.plx-hero__visual-card span {
  color: var(--plx-muted);
  font-size: 11px;
}

.plx-proof {
  border-bottom: 1px solid var(--plx-line);
  background: #fff;
}

.plx-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.plx-proof__grid > div {
  display: flex;
  min-height: 118px;
  padding: 27px clamp(20px, 2.5vw, 40px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--plx-line);
}

.plx-proof__grid > div:first-child {
  padding-left: 0;
}

.plx-proof__grid > div:last-child {
  border-right: 0;
}

.plx-proof__grid strong {
  color: var(--plx-ink);
  font-size: 19px;
  line-height: 1.2;
}

.plx-proof__grid span {
  max-width: 250px;
  margin-top: 6px;
  color: var(--plx-muted);
  font-size: 13px;
  line-height: 1.45;
}

.plx-section {
  padding-block: clamp(84px, 8vw, 136px);
  background: #fff;
}

.plx-section--paper {
  background: var(--plx-paper);
}

.plx-section--ink {
  background: var(--plx-ink);
  color: #fff;
}

.plx-section-head {
  display: grid;
  max-width: 1120px;
  margin-bottom: clamp(42px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  column-gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.plx-section-head .plx-eyebrow {
  grid-column: 1 / -1;
}

.plx-section-head h2 {
  margin: 0;
  color: var(--plx-ink);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.plx-section-head > p {
  margin: 0;
  color: var(--plx-muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.plx-path-card {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
  background: #fff;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.plx-path-card:hover {
  transform: translateY(-3px);
  border-color: #b6c0cb;
  box-shadow: var(--plx-shadow);
}

.plx-path-card > span {
  color: var(--plx-gold-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.plx-path-card h3 {
  max-width: 360px;
  margin: auto 0 12px;
  color: var(--plx-ink);
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.plx-path-card p {
  max-width: 360px;
  margin: 0;
  color: var(--plx-muted);
}

.plx-path-card > svg {
  position: absolute;
  top: 30px;
  right: 30px;
}

.plx-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plx-product-grid--catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.plx-product-card {
  overflow: hidden;
  border: 1px solid #d8dde3;
  border-radius: var(--plx-radius);
  background: #fff;
}

.plx-product-card[hidden] {
  display: none;
}

.plx-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eeeae2;
}

.plx-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.plx-product-card:hover .plx-product-card__image img {
  transform: scale(1.018);
}

.plx-product-card__image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--plx-ink);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.plx-product-card__body {
  padding: 24px;
}

.plx-product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.plx-product-card__head p {
  margin: 0 0 4px;
  color: var(--plx-muted);
  font-size: 11px;
}

.plx-product-card__head h3 {
  margin: 0;
  color: var(--plx-ink);
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.plx-product-card__head > strong {
  color: var(--plx-ink);
  font-size: 15px;
  white-space: nowrap;
}

.plx-product-card__head small {
  color: var(--plx-muted);
  font-size: 10px;
  font-weight: 500;
}

.plx-product-card__description {
  min-height: 50px;
  margin: 15px 0 0;
  color: var(--plx-muted);
  font-size: 14px;
}

.plx-specs {
  display: flex;
  margin: 18px 0 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px 16px;
}

.plx-specs li {
  display: flex;
  align-items: center;
  color: #546175;
  font-size: 11px;
  gap: 5px;
}

.plx-specs svg {
  width: 14px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 2;
}

.plx-product-card__purchase {
  display: grid;
  margin-top: 22px;
  padding-top: 18px;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-top: 1px solid var(--plx-line);
  gap: 18px;
}

.plx-product-card__purchase label {
  display: flex;
  flex-direction: column;
  color: var(--plx-muted);
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
}

.plx-product-card__purchase input {
  width: 118px;
  height: 44px;
  padding: 8px 12px;
  border: 1px solid #cbd2da;
  border-radius: 8px;
  background: #fff;
  color: var(--plx-ink);
  font-size: 15px;
  font-weight: 700;
}

.plx-product-card__purchase output {
  color: var(--plx-ink);
  font-size: 18px;
  font-weight: 800;
}

.plx-product-card__error,
.plx-upload-error,
.plx-field-error {
  min-height: 20px;
  margin-top: 8px;
  color: var(--plx-error);
  font-size: 11px;
  line-height: 1.45;
}

.plx-product-card__actions {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.plx-product-card__actions .plx-btn {
  min-height: 46px;
  padding-inline: 12px;
  font-size: 12px;
}

.plx-product-card--compact .plx-product-card__body {
  padding: 20px;
}

.plx-product-card--compact .plx-product-card__head {
  display: block;
}

.plx-product-card--compact .plx-product-card__head > strong {
  display: block;
  margin-top: 10px;
}

.plx-product-card--compact .plx-text-link {
  margin-top: 22px;
}

.plx-centered {
  display: flex;
  margin-top: 48px;
  justify-content: center;
}

.plx-process {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.plx-process li {
  position: relative;
  padding-right: 28px;
}

.plx-process li:not(:last-child)::after {
  position: absolute;
  top: 15px;
  right: 8px;
  width: 44px;
  height: 1px;
  background: var(--plx-line);
  content: "";
}

.plx-process > li > span {
  display: block;
  color: var(--plx-gold-dark);
  font-size: 12px;
  font-weight: 850;
}

.plx-process h3 {
  margin: 28px 0 9px;
  color: var(--plx-ink);
  font-size: 18px;
  line-height: 1.25;
}

.plx-process p {
  margin: 0;
  color: var(--plx-muted);
  font-size: 13px;
}

.plx-price-promo {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
}

.plx-price-promo h2,
.plx-final-cta h2,
.plx-about-facts h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.plx-price-promo > div:first-child > p {
  max-width: 650px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
}

.plx-mini-calc {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--plx-radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.plx-mini-calc > label {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
}

.plx-mini-calc input {
  width: 100%;
  height: 64px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 23px;
  font-weight: 800;
}

.plx-mini-calc__result {
  display: flex;
  margin-top: 28px;
  padding-top: 27px;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.plx-mini-calc__result span,
.plx-mini-calc__result small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.plx-mini-calc__result strong {
  margin-block: 6px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.04em;
}

.plx-mini-calc [data-price-error] {
  min-height: 20px;
  margin: 12px 0 0;
  color: #f2bf9f;
  font-size: 12px;
}

.plx-editorial {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: stretch;
}

.plx-editorial__image {
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--plx-radius-lg) 0 0 var(--plx-radius-lg);
}

.plx-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plx-editorial__copy {
  display: flex;
  padding: clamp(40px, 6vw, 90px);
  flex-direction: column;
  justify-content: center;
  border-radius: 0 var(--plx-radius-lg) var(--plx-radius-lg) 0;
  background: var(--plx-paper);
}

.plx-editorial__copy h2 {
  margin: 0;
  color: var(--plx-ink);
  font-size: clamp(36px, 3.5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.plx-editorial__copy p {
  margin: 25px 0;
  color: var(--plx-muted);
  font-size: 16px;
}

.plx-accordion {
  border-top: 1px solid #ccd3db;
}

.plx-accordion details {
  border-bottom: 1px solid #ccd3db;
}

.plx-accordion summary {
  display: flex;
  min-height: 82px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--plx-ink);
  font-size: 18px;
  font-weight: 760;
  gap: 24px;
  list-style: none;
}

.plx-accordion summary::-webkit-details-marker {
  display: none;
}

.plx-accordion summary svg {
  width: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.plx-accordion details[open] summary svg {
  transform: rotate(45deg);
}

.plx-accordion details > p {
  max-width: 820px;
  margin: -4px 0 28px;
  color: var(--plx-muted);
  font-size: 16px;
}

.plx-final-cta {
  padding-block: 70px;
  background: var(--plx-ink);
}

.plx-final-cta .plx-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.plx-final-cta h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.5vw, 52px);
}

.plx-final-cta .plx-container > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plx-page-hero {
  padding-block: clamp(72px, 8vw, 124px);
  background: var(--plx-ink);
  color: #fff;
}

.plx-page-hero > .plx-container {
  display: grid;
  grid-template-columns: minmax(0, 880px);
}

.plx-page-hero--split > .plx-container {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
}

.plx-page-hero h1 {
  max-width: 970px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.plx-page-hero p {
  max-width: 800px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.plx-page-hero__visual {
  overflow: hidden;
  border-radius: var(--plx-radius-lg);
}

.plx-page-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plx-page-hero__metric {
  display: flex;
  min-height: 310px;
  padding: 50px;
  align-items: baseline;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--plx-radius-lg);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.plx-page-hero__metric span {
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
}

.plx-page-hero__metric strong {
  font-size: clamp(50px, 6vw, 86px);
  letter-spacing: -0.05em;
}

.plx-page-hero__metric small {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.plx-filterbar {
  display: flex;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--plx-line);
  gap: 8px;
}

.plx-filterbar button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--plx-muted);
  font-size: 13px;
  font-weight: 750;
}

.plx-filterbar button.is-active {
  border-color: var(--plx-ink);
  background: var(--plx-ink);
  color: #fff;
}

.plx-stock-note {
  display: flex;
  margin-top: 48px;
  padding: 28px 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
  background: var(--plx-paper);
  gap: 30px;
}

.plx-stock-note > div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.plx-stock-note > div > svg {
  width: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 1.5;
}

.plx-stock-note h2 {
  margin: 0;
  color: var(--plx-ink);
  font-size: 20px;
}

.plx-stock-note p {
  max-width: 700px;
  margin: 6px 0 0;
  color: var(--plx-muted);
  font-size: 13px;
}

.plx-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  gap: 28px;
}

.plx-price-calculator {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  overflow: hidden;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius-lg);
}

.plx-price-calculator__controls {
  padding: clamp(32px, 4vw, 58px);
}

.plx-price-calculator__controls > label {
  display: flex;
  flex-direction: column;
  color: var(--plx-ink);
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
}

.plx-price-calculator__controls > label input {
  height: 70px;
  padding: 12px 18px;
  border: 1px solid #bfc8d1;
  border-radius: 10px;
  color: var(--plx-ink);
  font-size: 26px;
  font-weight: 800;
}

.plx-price-calculator fieldset {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border: 0;
  gap: 8px;
}

.plx-price-calculator legend {
  margin-bottom: 10px;
  color: var(--plx-ink);
  font-size: 13px;
  font-weight: 800;
}

.plx-price-calculator fieldset label {
  position: relative;
}

.plx-price-calculator fieldset input {
  position: absolute;
  opacity: 0;
}

.plx-price-calculator fieldset span {
  display: flex;
  min-height: 52px;
  padding: 12px 15px;
  align-items: center;
  border: 1px solid var(--plx-line);
  border-radius: 9px;
  cursor: pointer;
  color: var(--plx-muted);
  font-size: 13px;
  font-weight: 700;
}

.plx-price-calculator fieldset input:checked + span {
  border-color: var(--plx-ink);
  background: var(--plx-blue-soft);
  color: var(--plx-ink);
}

.plx-price-calculator__result {
  display: flex;
  padding: clamp(32px, 4vw, 58px);
  flex-direction: column;
  background: var(--plx-ink);
  color: #fff;
}

.plx-price-calculator__result > span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  font-weight: 700;
}

.plx-price-calculator__result > strong {
  margin: 8px 0 26px;
  color: #fff;
  font-size: clamp(37px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.plx-price-calculator__result > div {
  display: flex;
  padding-block: 18px;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 18px;
}

.plx-price-calculator__result > div span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.plx-price-calculator__result > div b {
  font-size: 20px;
}

.plx-price-calculator__result > p {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.plx-price-calculator__result .plx-btn {
  margin-top: auto;
}

.plx-tier-panel {
  padding: clamp(32px, 4vw, 50px);
  border-radius: var(--plx-radius-lg);
  background: var(--plx-paper);
}

.plx-tier-panel > h2 {
  margin: 0 0 25px;
  color: var(--plx-ink);
  font-size: 28px;
}

.plx-tier-table {
  display: grid;
  gap: 25px;
}

.plx-tier-table h3 {
  margin: 0 0 10px;
  color: var(--plx-ink);
  font-size: 14px;
}

.plx-tier-table p {
  display: flex;
  margin: 0;
  padding-block: 10px;
  justify-content: space-between;
  border-top: 1px solid #d3d0c9;
  color: var(--plx-muted);
  font-size: 12px;
  gap: 18px;
}

.plx-tier-table p strong {
  color: var(--plx-ink);
}

.plx-tier-panel > p {
  margin: 24px 0 0;
  color: var(--plx-muted);
  font-size: 12px;
}

.plx-inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.plx-check-panel {
  padding: clamp(34px, 4vw, 54px);
  border-radius: var(--plx-radius);
  background: #fff;
}

.plx-check-panel--muted {
  background: #ece9e2;
}

.plx-check-panel h2 {
  margin: 0;
  color: var(--plx-ink);
  font-size: 26px;
}

.plx-check-panel ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  gap: 15px;
}

.plx-check-panel li {
  display: flex;
  align-items: flex-start;
  color: #435064;
  gap: 12px;
}

.plx-check-panel svg {
  width: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 2;
}

.plx-production-stages {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--plx-line);
  border-left: 1px solid var(--plx-line);
}

.plx-production-stages li {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid var(--plx-line);
  border-bottom: 1px solid var(--plx-line);
}

.plx-production-stages > li > span {
  color: var(--plx-gold-dark);
  font-size: 12px;
  font-weight: 850;
}

.plx-production-stages h2 {
  margin: 55px 0 10px;
  color: var(--plx-ink);
  font-size: 23px;
  line-height: 1.2;
}

.plx-production-stages p {
  margin: 0;
  color: var(--plx-muted);
  font-size: 14px;
}

.plx-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.plx-fact-grid article {
  padding: 28px;
  border: 1px solid #d9d5cc;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.55);
}

.plx-fact-grid h3 {
  margin: 0 0 12px;
  color: var(--plx-ink);
  font-size: 18px;
}

.plx-fact-grid p {
  margin: 0;
  color: var(--plx-muted);
  font-size: 13px;
}

.plx-production-evidence {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.plx-production-evidence__photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.plx-production-evidence__photos img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--plx-radius);
}

.plx-production-evidence__photos img:last-child {
  height: 330px;
  margin-top: 100px;
}

.plx-production-evidence h2 {
  margin: 0;
  color: var(--plx-ink);
  font-size: clamp(36px, 3.5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.plx-production-evidence p {
  margin: 24px 0 30px;
  color: var(--plx-muted);
}

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

.plx-focus-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
}

.plx-focus-grid span {
  color: var(--plx-gold-dark);
  font-size: 12px;
  font-weight: 850;
}

.plx-focus-grid h2 {
  margin: 85px 0 12px;
  color: var(--plx-ink);
  font-size: 24px;
}

.plx-focus-grid p {
  margin: 0;
  color: var(--plx-muted);
}

.plx-about-facts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.plx-about-facts ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 18px;
}

.plx-about-facts li {
  display: flex;
  padding-bottom: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  gap: 13px;
}

.plx-about-facts svg {
  width: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: #d7aa5b;
  stroke-width: 2;
}

.plx-about-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.plx-about-visual img {
  width: 100%;
  border-radius: var(--plx-radius-lg);
}

.plx-about-visual h2 {
  margin: 0;
  color: var(--plx-ink);
  font-size: clamp(36px, 3.5vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.plx-about-visual p {
  margin: 25px 0 30px;
  color: var(--plx-muted);
}

.plx-contact-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plx-contact-paths > a {
  position: relative;
  display: flex;
  min-height: 280px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
}

.plx-contact-paths > a > span {
  color: var(--plx-gold-dark);
  font-size: 12px;
  font-weight: 850;
}

.plx-contact-paths h2 {
  margin: auto 0 10px;
  color: var(--plx-ink);
  font-size: 23px;
}

.plx-contact-paths p {
  margin: 0;
  color: var(--plx-muted);
  font-size: 14px;
}

.plx-contact-paths > a > svg {
  position: absolute;
  top: 28px;
  right: 28px;
}

.plx-contact-card {
  display: grid;
  margin-top: 24px;
  padding: 34px;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--plx-radius);
  background: var(--plx-paper);
  gap: 30px;
}

.plx-contact-card > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 2px 12px;
}

.plx-contact-card svg {
  width: 23px;
  grid-row: 1 / span 2;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 1.7;
}

.plx-contact-card span {
  color: var(--plx-muted);
  font-size: 11px;
}

.plx-contact-card a,
.plx-contact-card strong {
  color: var(--plx-ink);
  font-size: 15px;
}

.plx-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  align-items: start;
  gap: 28px;
}

.plx-cart-lines {
  display: grid;
  gap: 14px;
}

.plx-cart-line {
  display: grid;
  padding: 18px;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
  background: #fff;
  gap: 24px;
}

.plx-cart-line > img {
  width: 180px;
  aspect-ratio: 4 / 3;
  border-radius: 11px;
  object-fit: cover;
}

.plx-cart-line__main > span {
  color: var(--plx-muted);
  font-size: 11px;
}

.plx-cart-line__main h2 {
  margin: 2px 0 8px;
  color: var(--plx-ink);
  font-size: 22px;
}

.plx-cart-line__main > p:not(.plx-field-error) {
  display: flex;
  margin: 0 0 15px;
  align-items: center;
  color: var(--plx-muted);
  font-size: 12px;
  gap: 7px;
}

.plx-cart-line__main > p svg {
  width: 16px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 1.7;
}

.plx-cart-line__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.plx-cart-line__controls label {
  display: flex;
  align-items: center;
  color: var(--plx-muted);
  font-size: 11px;
  gap: 8px;
}

.plx-cart-line__controls input {
  width: 92px;
  height: 38px;
  padding: 6px 9px;
  border: 1px solid #cbd2da;
  border-radius: 7px;
  color: var(--plx-ink);
  font-weight: 700;
}

.plx-cart-line__controls a,
.plx-cart-line__controls button {
  display: inline-flex;
  padding: 0;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--plx-muted);
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
}

.plx-cart-line__controls svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.plx-cart-line > strong {
  color: var(--plx-ink);
  font-size: 20px;
}

.plx-cart-summary,
.plx-checkout-summary {
  position: sticky;
  top: 110px;
  padding: 30px;
  border-radius: var(--plx-radius);
  background: var(--plx-ink);
  color: #fff;
}

.plx-cart-summary > span,
.plx-checkout-summary > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plx-cart-summary > div {
  display: flex;
  margin-block: 30px 20px;
  flex-direction: column;
}

.plx-cart-summary small {
  color: rgba(255, 255, 255, 0.55);
}

.plx-cart-summary strong {
  margin-top: 5px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.plx-cart-summary p,
.plx-checkout-summary > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.plx-cart-summary .plx-btn {
  width: 100%;
  margin-top: 12px;
}

.plx-empty-state {
  display: flex;
  min-height: 420px;
  padding: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
  text-align: center;
}

.plx-empty-state > svg {
  width: 48px;
  fill: none;
  stroke: var(--plx-gold-dark);
  stroke-width: 1.4;
}

.plx-empty-state h2 {
  margin: 20px 0 25px;
  color: var(--plx-ink);
  font-size: 28px;
}

.plx-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.45fr);
  align-items: start;
  gap: 36px;
}

.plx-checkout-form {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--plx-line);
  border-radius: var(--plx-radius);
}

.plx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.plx-field {
  display: flex;
  flex-direction: column;
  color: var(--plx-ink);
  font-size: 12px;
  font-weight: 750;
  gap: 8px;
}

.plx-field small {
  color: var(--plx-muted);
  font-size: 10px;
  font-weight: 500;
}

.plx-field input,
.plx-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #c5cdd6;
  border-radius: 8px;
  background: #fff;
}

.plx-field textarea {
  resize: vertical;
}

.plx-field--wide {
  margin-top: 20px;
}

.plx-checkbox {
  display: flex;
  margin-block: 24px;
  align-items: flex-start;
  color: var(--plx-muted);
  font-size: 12px;
  gap: 10px;
}

.plx-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--plx-ink);
}

.plx-checkbox a {
  color: var(--plx-gold-dark);
  text-decoration: underline;
}

.plx-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.plx-form-status {
  display: flex;
  min-height: 25px;
  margin-bottom: 12px;
  flex-direction: column;
  color: var(--plx-error);
  font-size: 12px;
}

.plx-form-status strong {
  color: var(--plx-success);
  font-size: 16px;
}

.plx-checkout-item {
  display: grid;
  margin-top: 20px;
  padding-top: 20px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 12px;
}

.plx-checkout-item img {
  width: 64px;
  height: 50px;
  border-radius: 7px;
  object-fit: cover;
}

.plx-checkout-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.plx-checkout-item strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plx-checkout-item small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.plx-checkout-item b {
  font-size: 12px;
}

.plx-checkout-total {
  display: flex;
  margin-top: 24px;
  padding-top: 20px;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 15px;
}

.plx-checkout-total span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.plx-checkout-total strong {
  font-size: 25px;
}

.plx-checkout-summary__empty {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.plx-checkout-summary__empty svg {
  width: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: #d7aa5b;
  stroke-width: 1.7;
}

.plx-checkout-summary__empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.plx-legal-sections {
  display: grid;
  gap: 30px;
}

.plx-legal-sections section {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--plx-line);
}

.plx-legal-sections h2 {
  margin: 0 0 10px;
  color: var(--plx-ink);
  font-size: 24px;
}

.plx-legal-sections p {
  margin: 0;
  color: var(--plx-muted);
}

.plx-legal-note {
  margin-top: 40px;
  padding: 20px;
  border-left: 3px solid var(--plx-gold);
  background: var(--plx-paper);
  color: var(--plx-muted);
  font-size: 12px;
}

.plx-constructor-head {
  padding-block: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--plx-ink);
  color: #fff;
}

.plx-constructor-head .plx-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.plx-constructor-head .plx-eyebrow {
  grid-column: 1 / -1;
}

.plx-constructor-head h1 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 70px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.plx-constructor-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.plx-constructor {
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 1.25fr) minmax(460px, 0.75fr);
  background: #fff;
}

.plx-constructor__viewer {
  position: sticky;
  top: 84px;
  display: grid;
  height: calc(100vh - 84px);
  min-height: 720px;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border-right: 1px solid var(--plx-line);
  background: #eeeae2;
}

.plx-stage-toolbar {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 62px;
  padding: 9px 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d7d2c8;
  background: rgba(255, 255, 255, 0.78);
  gap: 12px;
  backdrop-filter: blur(10px);
}

.plx-stage-toolbar > div {
  display: flex;
  gap: 6px;
}

.plx-stage-toolbar button {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 12px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  color: var(--plx-muted);
  font-size: 11px;
  font-weight: 750;
  gap: 7px;
}

.plx-stage-toolbar button.is-active {
  border-color: var(--plx-ink);
  background: var(--plx-ink);
  color: #fff;
}

.plx-stage-toolbar svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.plx-3d-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.plx-3d-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.plx-3d-stage canvas.is-artwork-mode {
  cursor: crosshair;
}

.plx-stage-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(10, 28, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--plx-ink);
  font-size: 10px;
  font-weight: 800;
  pointer-events: none;
}

.plx-stage-label--left {
  left: 24%;
  transform: translateX(-50%);
}

.plx-stage-label--right {
  right: 24%;
  transform: translateX(50%);
}

.plx-stage-hint {
  min-height: 42px;
  margin: 0;
  padding: 11px 20px;
  border-top: 1px solid #d7d2c8;
  background: rgba(255, 255, 255, 0.7);
  color: var(--plx-muted);
  font-size: 11px;
  text-align: center;
}

.plx-viewer-actions {
  display: grid;
  padding: 12px;
  grid-template-columns: 0.7fr 1.3fr;
  border-top: 1px solid #d7d2c8;
  background: #fff;
  gap: 8px;
}

.plx-save-status {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 83px;
  color: var(--plx-success);
  font-size: 11px;
}

.plx-constructor__panel {
  min-width: 0;
  background: #fff;
}

.plx-control-section {
  padding: 32px clamp(24px, 3vw, 46px);
  border-bottom: 1px solid var(--plx-line);
}

.plx-control-section > h2 {
  margin: 0 0 22px;
  color: var(--plx-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plx-model-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.plx-model-picker button {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--plx-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.plx-model-picker button.is-active {
  border-color: var(--plx-ink);
  box-shadow: inset 0 0 0 1px var(--plx-ink);
}

.plx-model-picker img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
}

.plx-model-picker span {
  display: block;
  padding: 9px 11px;
  color: var(--plx-ink);
  font-size: 11px;
  font-weight: 750;
}

.plx-color-picker,
.plx-pattern-picker {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.plx-color-picker legend,
.plx-pattern-picker legend {
  margin-bottom: 10px;
  color: var(--plx-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plx-color-picker > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plx-color-picker label {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
}

.plx-color-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plx-color-picker label > span:not(.plx-sr-only) {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(10, 28, 48, 0.18);
  border-radius: 50%;
  background: var(--swatch);
}

.plx-color-picker label:has(input:checked) {
  border: 2px solid var(--plx-ink);
}

.plx-color-picker .plx-custom-color {
  border: 1px dashed #aeb7c2;
  border-radius: 9px;
  cursor: pointer;
}

.plx-custom-color svg {
  width: 15px;
  fill: none;
  stroke: var(--plx-ink);
  stroke-width: 1.8;
}

.plx-custom-color input {
  width: 1px;
  height: 1px;
}

.plx-pattern-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.plx-pattern-picker legend {
  grid-column: 1 / -1;
}

.plx-pattern-picker label {
  position: relative;
}

.plx-pattern-picker input {
  position: absolute;
  opacity: 0;
}

.plx-pattern-picker span {
  display: flex;
  min-height: 68px;
  padding: 10px;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid var(--plx-line);
  border-radius: 8px;
  cursor: pointer;
  background-color: #f5f2eb;
  background-position: center 10px;
  background-size: 44px 26px;
  background-repeat: no-repeat;
  color: var(--plx-muted);
  font-size: 9px;
  font-weight: 700;
}

.plx-pattern-picker span[data-pattern="stripes"] {
  background-image: repeating-linear-gradient(90deg, var(--plx-gold) 0 4px, transparent 4px 10px);
}

.plx-pattern-picker span[data-pattern="dots"] {
  background-image: radial-gradient(circle, var(--plx-gold) 2px, transparent 3px);
  background-size: 13px 13px;
}

.plx-pattern-picker span[data-pattern="grid"] {
  background-image:
    linear-gradient(var(--plx-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--plx-gold) 1px, transparent 1px);
  background-size: 10px 10px;
}

.plx-pattern-picker input:checked + span {
  border-color: var(--plx-ink);
  box-shadow: inset 0 0 0 1px var(--plx-ink);
  color: var(--plx-ink);
}

.plx-upload {
  display: flex;
  min-height: 100px;
  padding: 20px;
  align-items: center;
  border: 1px dashed #aeb8c4;
  border-radius: 10px;
  cursor: pointer;
  gap: 14px;
}

.plx-upload > svg {
  width: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: var(--plx-ink);
  stroke-width: 1.6;
}

.plx-upload > span {
  display: flex;
  flex-direction: column;
}

.plx-upload strong {
  color: var(--plx-ink);
  font-size: 12px;
}

.plx-upload small {
  margin-top: 4px;
  color: var(--plx-muted);
  font-size: 9px;
}

.plx-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.plx-range {
  display: grid;
  margin-top: 18px;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--plx-muted);
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
}

.plx-range output {
  color: var(--plx-ink);
  font-size: 10px;
}

.plx-range input {
  width: 100%;
  grid-column: 1 / -1;
  accent-color: var(--plx-ink);
}

.plx-control-note {
  margin: 15px 0 0;
  color: var(--plx-muted);
  font-size: 10px;
}

.plx-pair-modes {
  display: grid;
  gap: 7px;
}

.plx-pair-modes label {
  position: relative;
}

.plx-pair-modes input {
  position: absolute;
  opacity: 0;
}

.plx-pair-modes label > span {
  display: flex;
  min-height: 66px;
  padding: 12px 14px 12px 44px;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--plx-line);
  border-radius: 9px;
  cursor: pointer;
}

.plx-pair-modes label > span::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  border: 1px solid #9ba6b2;
  border-radius: 50%;
  content: "";
}

.plx-pair-modes input:checked + span {
  border-color: var(--plx-ink);
  background: var(--plx-blue-soft);
}

.plx-pair-modes input:checked + span::before {
  border: 5px solid var(--plx-ink);
}

.plx-pair-modes strong {
  color: var(--plx-ink);
  font-size: 11px;
}

.plx-pair-modes small {
  margin-top: 2px;
  color: var(--plx-muted);
  font-size: 9px;
}

.plx-sock-tabs {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.plx-sock-tabs.is-hidden,
.plx-pair-warning.is-hidden {
  display: none;
}

.plx-sock-tabs button {
  min-height: 40px;
  border: 1px solid var(--plx-line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  color: var(--plx-muted);
  font-size: 10px;
  font-weight: 700;
}

.plx-sock-tabs button.is-active {
  border-color: var(--plx-ink);
  background: var(--plx-ink);
  color: #fff;
}

.plx-pair-warning {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #e4b0a9;
  border-radius: 8px;
  background: #fff4f2;
  color: #7f302b;
  font-size: 10px;
}

.plx-pair-warning label {
  display: flex;
  margin-top: 10px;
  align-items: flex-start;
  gap: 7px;
}

.plx-pair-warning input {
  width: 16px;
  height: 16px;
  accent-color: var(--plx-error);
}

.plx-quantity-input {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.plx-quantity-input button,
.plx-quantity-input input {
  height: 48px;
  border: 1px solid #c7cfd8;
  background: #fff;
}

.plx-quantity-input button {
  cursor: pointer;
  color: var(--plx-ink);
  font-size: 18px;
}

.plx-quantity-input button:first-child {
  border-radius: 8px 0 0 8px;
}

.plx-quantity-input button:last-child {
  border-radius: 0 8px 8px 0;
}

.plx-quantity-input input {
  min-width: 0;
  padding: 8px 12px;
  border-right: 0;
  border-left: 0;
  color: var(--plx-ink);
  font-weight: 800;
  text-align: center;
}

.plx-design-price {
  display: grid;
  margin-top: 20px;
  padding: 18px;
  border-radius: 10px;
  background: var(--plx-ink);
  color: #fff;
}

.plx-design-price span,
.plx-design-price small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.plx-design-price strong {
  margin-block: 4px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.plx-footer {
  padding-top: 70px;
  background: #071625;
  color: rgba(255, 255, 255, 0.7);
}

.plx-footer__main {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 70px;
}

.plx-brand--footer {
  color: #fff;
}

.plx-footer__main > div:first-child > p {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.plx-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 14px 30px;
}

.plx-footer__links a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.plx-footer__contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.plx-footer__contact span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  text-transform: uppercase;
}

.plx-footer__contact a {
  margin-top: 6px;
  color: #fff;
  font-size: 14px;
}

.plx-footer__contact a:last-child {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.plx-footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.plx-noscript {
  min-height: 70vh;
  padding: 100px 8vw;
}

@media (max-width: 1320px) {
  :root {
    --plx-container: min(1180px, calc(100vw - 48px));
  }

  .plx-header__inner {
    gap: 28px;
  }

  .plx-nav {
    gap: 18px;
  }

  .plx-nav a {
    font-size: 12px;
  }

  .plx-header__quote {
    display: none;
  }

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

  .plx-product-card--compact .plx-product-card__head {
    display: flex;
  }

  .plx-process {
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 12px;
  }

  .plx-process li:not(:last-child)::after {
    display: none;
  }

  .plx-fact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plx-constructor {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  }
}

@media (max-width: 1050px) {
  body.plx-body.admin-bar .plx-header {
    top: 46px;
  }

  .plx-header__inner {
    min-height: 74px;
  }

  .plx-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .plx-header__navwrap {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 30px 24px;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    background: #fff;
  }

  .admin-bar .plx-header__navwrap {
    top: 120px;
  }

  .plx-header__navwrap.is-open {
    display: flex;
  }

  .plx-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .plx-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--plx-line);
    font-size: 19px;
  }

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

  .plx-header__actions {
    margin-top: auto;
    padding-top: 28px;
    align-items: center;
    justify-content: space-between;
  }

  .plx-header__quote {
    display: inline-flex;
  }

  .plx-hero {
    background: var(--plx-ink);
  }

  .plx-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .plx-hero__copy {
    padding: 80px 0;
  }

  .plx-hero__visual {
    min-height: 540px;
    margin-inline: calc((100vw - var(--plx-container)) / -2);
  }

  .plx-proof__grid {
    grid-template-columns: 1fr 1fr;
  }

  .plx-proof__grid > div {
    border-bottom: 1px solid var(--plx-line);
  }

  .plx-proof__grid > div:first-child {
    padding-left: clamp(20px, 2.5vw, 40px);
  }

  .plx-proof__grid > div:nth-child(2n) {
    border-right: 0;
  }

  .plx-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .plx-section-head > p {
    max-width: 700px;
    margin-top: 25px;
  }

  .plx-path-grid,
  .plx-focus-grid,
  .plx-contact-paths {
    grid-template-columns: 1fr;
  }

  .plx-path-card,
  .plx-focus-grid article,
  .plx-contact-paths > a {
    min-height: 240px;
  }

  .plx-price-promo,
  .plx-editorial,
  .plx-production-evidence,
  .plx-about-visual,
  .plx-about-facts {
    grid-template-columns: 1fr;
  }

  .plx-editorial__image {
    min-height: 430px;
    border-radius: var(--plx-radius-lg) var(--plx-radius-lg) 0 0;
  }

  .plx-editorial__copy {
    border-radius: 0 0 var(--plx-radius-lg) var(--plx-radius-lg);
  }

  .plx-page-hero--split > .plx-container {
    grid-template-columns: 1fr;
  }

  .plx-page-hero__visual {
    max-width: 680px;
  }

  .plx-pricing-layout,
  .plx-cart-layout,
  .plx-checkout-layout {
    grid-template-columns: 1fr;
  }

  .plx-cart-summary,
  .plx-checkout-summary {
    position: static;
  }

  .plx-production-stages {
    grid-template-columns: 1fr 1fr;
  }

  .plx-about-facts {
    gap: 50px;
  }

  .plx-constructor-head .plx-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .plx-constructor {
    grid-template-columns: 1fr;
  }

  .plx-constructor__viewer {
    position: relative;
    top: 0;
    height: min(780px, calc(100vh - 74px));
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--plx-line);
  }

  .plx-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --plx-container: calc(100vw - 32px);
    --plx-radius: 13px;
    --plx-radius-lg: 18px;
  }

  body.plx-body {
    font-size: 15px;
  }

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

  .plx-brand {
    min-width: 0;
  }

  .plx-brand__name {
    font-size: 20px;
  }

  .plx-brand__tag {
    font-size: 7px;
  }

  .plx-header__navwrap {
    top: 68px;
  }

  .admin-bar .plx-header__navwrap {
    top: 114px;
  }

  .plx-header__actions {
    flex-wrap: wrap;
  }

  .plx-header__quote {
    width: 100%;
  }

  .plx-hero__copy {
    padding-block: 62px;
  }

  .plx-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .plx-lead {
    font-size: 17px;
  }

  .plx-hero__actions {
    display: grid;
  }

  .plx-hero__visual {
    min-height: 390px;
  }

  .plx-hero__visual-card {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .plx-proof__grid {
    grid-template-columns: 1fr;
  }

  .plx-proof__grid > div {
    min-height: 94px;
    padding: 20px 0 !important;
    border-right: 0;
  }

  .plx-section {
    padding-block: 70px;
  }

  .plx-section-head h2,
  .plx-price-promo h2,
  .plx-production-evidence h2,
  .plx-about-visual h2 {
    font-size: 38px;
  }

  .plx-product-grid,
  .plx-product-grid--catalog,
  .plx-inclusion-grid,
  .plx-fact-grid,
  .plx-contact-card {
    grid-template-columns: 1fr;
  }

  .plx-product-card--compact .plx-product-card__head {
    display: block;
  }

  .plx-product-card__head {
    display: block;
  }

  .plx-product-card__head > strong {
    display: block;
    margin-top: 10px;
  }

  .plx-product-card__actions {
    grid-template-columns: 1fr;
  }

  .plx-process {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .plx-process li {
    display: grid;
    padding: 22px 0;
    grid-template-columns: 45px 1fr;
    border-bottom: 1px solid var(--plx-line);
    gap: 12px;
  }

  .plx-process h3 {
    margin: 0 0 7px;
  }

  .plx-mini-calc {
    padding: 24px;
  }

  .plx-editorial__image {
    min-height: 300px;
  }

  .plx-editorial__copy {
    padding: 32px 24px;
  }

  .plx-final-cta .plx-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .plx-final-cta .plx-container > div:last-child {
    width: 100%;
  }

  .plx-final-cta .plx-btn {
    width: 100%;
  }

  .plx-page-hero {
    padding-block: 64px;
  }

  .plx-page-hero h1 {
    font-size: 44px;
  }

  .plx-page-hero__metric {
    min-height: 210px;
    padding: 30px;
  }

  .plx-stock-note {
    align-items: stretch;
    flex-direction: column;
  }

  .plx-price-calculator {
    grid-template-columns: 1fr;
  }

  .plx-production-stages {
    grid-template-columns: 1fr;
  }

  .plx-production-stages li {
    min-height: 220px;
  }

  .plx-production-evidence__photos {
    grid-template-columns: 1fr;
  }

  .plx-production-evidence__photos img,
  .plx-production-evidence__photos img:last-child {
    height: 300px;
    margin-top: 0;
  }

  .plx-about-facts {
    gap: 40px;
  }

  .plx-cart-line {
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: start;
    gap: 15px;
  }

  .plx-cart-line > img {
    width: 90px;
  }

  .plx-cart-line > strong {
    grid-column: 2;
  }

  .plx-cart-line__controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .plx-form-grid {
    grid-template-columns: 1fr;
  }

  .plx-constructor-head {
    padding-block: 45px;
  }

  .plx-constructor-head h1 {
    font-size: 43px;
  }

  .plx-constructor__viewer {
    height: 620px;
    min-height: 620px;
  }

  .plx-stage-toolbar {
    padding: 8px;
  }

  .plx-stage-toolbar button {
    padding: 7px 8px;
    font-size: 9px;
  }

  .plx-stage-toolbar button svg {
    display: none;
  }

  .plx-stage-label {
    top: 12px;
    font-size: 8px;
  }

  .plx-viewer-actions {
    grid-template-columns: 1fr;
  }

  .plx-save-status {
    right: 12px;
    bottom: 128px;
  }

  .plx-control-section {
    padding: 28px 18px;
  }

  .plx-model-picker {
    grid-template-columns: 1fr 1fr;
  }

  .plx-pattern-picker {
    grid-template-columns: 1fr 1fr;
  }

  .plx-footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plx-footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  body.plx-body.admin-bar .plx-header {
    top: 46px;
  }
}

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