:root {
  --black: #050505;
  --ink: #111;
  --white: #fff;
  --paper: #f5f4ef;
  --line: rgba(0, 0, 0, 0.12);
  --glass: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

main {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
}

body.is-filtering .product-card {
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.site-header.solid {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 13px;
  font-weight: 900;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header .brand span {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 28px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  padding: 16px 0;
}

.nav a,
.header-action {
  opacity: 0.78;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.nav-item > .nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms var(--ease);
}

.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
  transform: translateY(1px) rotate(225deg);
}

.nav a:hover,
.header-action:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  z-index: 40;
  top: calc(100% - 6px);
  left: 50%;
  width: 172px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.98);
  transform-origin: top;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  opacity: 0.76;
  transition: background 180ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
  transform: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-button {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}

.cart-button:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.header-action:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
}

.cart-button strong {
  min-width: 24px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f3f2ee;
}

.admin-login-card {
  width: min(100%, 420px);
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid #d8d6cf;
  background: #fff;
}

.admin-login-card h1,
.admin-login-card p {
  margin: 0;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
}

.admin-login-card input {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #c8c6bf;
  font: inherit;
}

.account-button {
  padding-inline: 16px;
}

.cart-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

.cart-drawer {
  position: fixed;
  z-index: 81;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 28px;
  border-radius: 34px 0 0 34px;
  background: rgba(245, 244, 239, 0.97);
  color: var(--black);
  box-shadow: -34px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(104%);
  transition: transform 320ms var(--ease);
}

.cart-is-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-is-open .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cart-head span,
.cart-summary span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-head h2 {
  margin: 4px 0 0;
  font-size: clamp(42px, 5vw, 68px);
}

.cart-close,
.cart-remove {
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.cart-close {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.cart-empty {
  align-self: start;
  margin: 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.cart-item-image {
  min-height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #ebe7dc;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

.cart-item-copy {
  display: grid;
  align-content: center;
  gap: 7px;
}

.cart-item-copy a {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.cart-item-copy span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-item-copy strong {
  font-size: 14px;
  font-weight: 900;
}

.cart-remove {
  width: 30px;
  height: 30px;
  align-self: start;
  font-size: 16px;
}

.cart-foot {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.cart-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.cart-summary strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.promo-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.promo-box span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-box input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: var(--paper);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.promo-row button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.promo-row button:hover {
  transform: translateY(-1px);
  background: transparent;
  color: var(--black);
}

.promo-row button:disabled,
.promo-box input:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.promo-box input:focus {
  outline: none;
  border-color: var(--black);
}

.promo-box small {
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.checkout-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

.checkout-is-open .checkout-modal {
  opacity: 1;
  pointer-events: auto;
}

.checkout-card {
  width: min(620px, 100%);
  max-height: calc(100vh - 44px);
  display: grid;
  gap: 14px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
  background: rgba(245, 244, 239, 0.98);
  color: var(--black);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
  transform: translateY(14px) scale(0.98);
  transition: transform 260ms var(--ease);
}

.checkout-is-open .checkout-card {
  transform: translateY(0) scale(1);
}

.account-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

.account-is-open .account-modal {
  opacity: 1;
  pointer-events: auto;
}

.account-card {
  width: min(780px, 100%);
  max-height: calc(100vh - 44px);
  display: grid;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
  background: rgba(245, 244, 239, 0.98);
  color: var(--black);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
  transform: translateY(14px) scale(0.98);
  transition: transform 260ms var(--ease);
}

.account-is-open .account-card {
  transform: translateY(0) scale(1);
}

.account-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.account-head > div {
  min-width: 0;
}

.account-head span,
.account-form label span,
.account-profile span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-head h2 {
  margin: 4px 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.94;
}

.account-form h3,
.account-orders h3 {
  margin: 0;
}

.account-auth,
.account-profile {
  display: grid;
  gap: 12px;
}

.account-auth {
  width: min(100%, 440px);
  justify-self: center;
}

.account-auth-view[hidden] {
  display: none;
}

.account-form,
.account-profile article,
.account-orders {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

.account-form label {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.account-form input,
.account-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--black);
  font-size: 15px;
  font-weight: 750;
}

.account-form input:focus,
.account-form select:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}

.account-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-profile-form h3,
.account-profile-form button,
.account-profile-form output {
  grid-column: 1 / -1;
}

.account-switch {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 13px;
  font-weight: 820;
  text-align: center;
}

.account-switch button {
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-profile strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.05;
}

.account-profile small,
.account-orders span,
.account-orders p {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
}

.account-orders article {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.checkout-head > div {
  min-width: 0;
}

.checkout-head span,
.checkout-card label span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-head h2 {
  margin: 4px 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.94;
}

.checkout-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.checkout-card label {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.checkout-card [hidden] {
  display: none !important;
}

.checkout-card input,
.checkout-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--black);
  font-size: 15px;
  font-weight: 750;
}

.checkout-card textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}

.button:disabled,
.button.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.tap-target {
  -webkit-tap-highlight-color: transparent;
}

.tap-target:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.tap-target.is-pressed {
  transform: scale(0.97);
}

.hero,
.home-hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.04);
  animation: heroZoom 1200ms var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.64)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 132px;
}

.kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker.dark {
  color: rgba(0, 0, 0, 0.48);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(58px, 10vw, 138px);
  font-weight: 900;
  line-height: 0.82;
}

.hero-line {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(26px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.94;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.button::after,
.filter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.button:hover,
.filter:hover {
  transform: translateY(-2px);
}

.checkout-delivery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-delivery legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-delivery label {
  min-height: 86px;
  align-content: start;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.checkout-delivery input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--black);
}

.checkout-delivery small {
  color: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.25;
}

.tap-target:active,
.button:active,
.filter-trigger:active,
.filter-option:active,
.product-button:active,
.size-pill:active,
.cart-button:active {
  transform: scale(0.98);
}

.button:hover::after,
.filter:hover::after {
  opacity: 0.08;
  transform: scaleX(1);
}

.button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
}

.button.dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.button.outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.hero-status {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.hero-status a {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 260ms var(--ease), color 260ms var(--ease);
}

.hero-status a:hover {
  background: var(--white);
  color: var(--black);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1px;
  background: var(--black);
}

.story-copy {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(34px, 7vw, 92px);
  background: var(--paper);
}

.story-copy p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.story-image {
  min-height: 58vh;
  overflow: hidden;
}

.story-image img,
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.image-band {
  position: relative;
  min-height: 58vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.04) 60%);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(12px, 3vw, 36px) clamp(12px, 3vw, 36px);
  overflow: hidden;
  border-radius: 32px;
  background: var(--black);
}

.about-features article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.about-features span {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.about-features h2 {
  max-width: 280px;
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.95;
}

.about-features p {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.visual-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
}

.catalog-entry {
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 1px;
  margin: 0 clamp(12px, 3vw, 36px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--black);
}

.catalog-entry-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  min-height: 44vh;
  padding: clamp(34px, 6vw, 78px);
  background: var(--paper);
  color: var(--black);
}

.catalog-entry-copy h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.88;
}

.catalog-entry-copy p:not(.kicker) {
  max-width: 430px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 750;
  line-height: 1.28;
}

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

.visual-tile {
  position: relative;
  min-height: 48vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.catalog-entry .visual-tile {
  min-height: 44vh;
}

.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 58%);
  transition: opacity 320ms var(--ease);
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.02);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.visual-tile span {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 900;
  line-height: 0.9;
}

.visual-tile:hover img {
  transform: scale(1.08);
  filter: grayscale(1) contrast(1.12);
}

.visual-tile:hover::after {
  opacity: 0.82;
}

.catalog {
  padding: clamp(34px, 6vw, 76px) clamp(14px, 4vw, 56px);
}

.catalog-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 132px clamp(18px, 4vw, 56px) clamp(34px, 5vw, 64px);
  background: var(--black);
  color: var(--white);
  border-radius: 0 0 32px 32px;
  margin: 0 clamp(12px, 3vw, 36px) clamp(18px, 3vw, 28px);
}

.catalog-hero h1 {
  margin: 0;
}

.catalog-hero > p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.catalog-note {
  grid-column: 1 / -1;
  align-self: start;
  justify-self: end;
  max-width: 240px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  opacity: 0.85;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.catalog-note:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.catalog-note::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 8px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.28);
}

.request-page .catalog-hero,
.request-page .request-info,
.request-page .request-service,
.request-page .order-panel {
  margin-inline: clamp(12px, 3vw, 36px);
}

.request-page .catalog-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 239, 229, 0.96)),
    var(--paper);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.request-page .catalog-hero > p {
  max-width: 360px;
  color: rgba(0, 0, 0, 0.56);
}

.request-page .request-info {
  padding-top: 0;
  background: transparent;
}

.request-page .request-info article,
.request-page .request-service > div,
.request-page .order-panel > div {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
}

.request-page .request-info article {
  min-height: 208px;
  background: rgba(255, 255, 255, 0.82);
}

.request-page .request-info article:nth-child(2) {
  background: var(--black);
  color: var(--white);
}

.request-page .request-info article:nth-child(2) span {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.62);
}

.request-page .request-info article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.66);
}

.request-page .request-service {
  padding-top: 0;
  background: transparent;
}

.request-page .request-service > div {
  min-height: 286px;
  background: rgba(255, 255, 255, 0.82);
}

.request-page .request-service > div:first-child {
  background: var(--black);
  color: var(--white);
}

.request-page .request-service > div:first-child .kicker {
  color: rgba(255, 255, 255, 0.58);
}

.request-page .order-panel {
  background: transparent;
}

.request-page .order-panel img {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
}

.request-page .order-panel > div {
  background: rgba(245, 243, 236, 0.98);
}

.request-page .request-card p:not(.kicker) {
  max-width: 520px;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.catalog-count {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border: 1px solid var(--black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-board {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.filter-select {
  position: relative;
  flex: 0 0 auto;
  width: max-content;
}

.filter-trigger {
  position: relative;
  width: 100%;
  min-width: 136px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 240ms var(--ease),
    color 240ms var(--ease),
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.filter-trigger::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms var(--ease);
}

.filter-trigger:hover,
.filter-select.is-open .filter-trigger {
  border-color: var(--black);
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.filter-select.is-open .filter-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.filter-trigger span {
  color: currentColor;
  opacity: 0.52;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-trigger strong {
  overflow: hidden;
  max-width: 150px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-menu {
  position: absolute;
  z-index: 12;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  width: 100%;
  max-width: none;
  max-height: 260px;
  display: grid;
  gap: 1px;
  overflow-y: auto;
  border: 1px solid var(--black);
  border-radius: 24px;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.filter-select.is-open .filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.filter-option {
  position: relative;
  min-height: 28px;
  padding: 0 24px 0 10px;
  background: var(--paper);
  color: var(--black);
  font-size: 9px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-option:hover,
.filter-option.is-active {
  background: var(--black);
  color: var(--white);
}

.filter-option.is-active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
}

.filter-menu::-webkit-scrollbar {
  width: 5px;
}

.filter-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.filter-option:active {
  transform: scale(0.98);
}

.filter-option[hidden] {
  display: none;
}

.price-menu {
  width: 100%;
  min-width: 100%;
  gap: 7px;
  padding: 7px;
  border-radius: 24px;
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(245, 244, 239, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.price-select .filter-trigger {
  min-width: 164px;
}

.price-menu label {
  display: grid;
  gap: 4px;
  padding: 7px 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.price-menu small {
  color: rgba(0, 0, 0, 0.42);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-menu input {
  width: 100%;
  min-height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  padding: 0 10px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.price-menu input:focus {
  border-color: rgba(0, 0, 0, 0.34);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.price-menu input::placeholder {
  color: rgba(0, 0, 0, 0.28);
}

.price-menu input::-webkit-outer-spin-button,
.price-menu input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.price-reset {
  width: 100%;
  min-height: 28px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), opacity 180ms var(--ease);
}

.price-reset:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.catalog-viewbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.view-control {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.view-control > span {
  margin-right: 2px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.view-button,
.size-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.size-button {
  width: 38px;
  padding: 0;
}

.view-button:hover,
.size-button:hover,
.view-button.is-active,
.size-button.is-active {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-row > span {
  width: 96px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-chip {
  position: relative;
  min-height: 40px;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.filter-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.filter-chip.is-active {
  background: var(--black);
  color: var(--white);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  position: relative;
  min-height: 42px;
  overflow: hidden;
  padding: 0 15px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.filter.is-active {
  background: var(--black);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  transition: opacity 220ms var(--ease);
}

.product-grid.card-size-small {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-grid.card-size-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid.card-size-medium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid.is-list-view {
  grid-template-columns: 1fr;
}

.product-grid.is-list-view .product-button {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  min-height: 220px;
  color: var(--black);
}

.product-grid.is-list-view .product-button::after {
  display: none;
}

.product-grid.is-list-view .product-button img {
  height: 100%;
  aspect-ratio: auto;
}

.product-grid.is-list-view .badge {
  top: 16px;
  left: 16px;
  border: 1px solid var(--black);
}

.product-grid.is-list-view .product-meta {
  position: static;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-content: start;
  gap: 14px;
  padding: clamp(22px, 4vw, 46px);
  color: var(--black);
  background: var(--paper);
}

.product-grid.is-list-view .product-meta strong {
  max-width: 100%;
  color: var(--black);
  font-size: clamp(28px, 4vw, 56px);
}

.product-grid.is-list-view .product-meta small {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 13px;
}

.product-grid.is-list-view .color-swatches {
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
}

.product-card {
  position: relative;
  min-width: 0;
  --variant-color: transparent;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.product-card:hover {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.product-card.is-hiding {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
}

.product-card.is-hidden {
  display: none;
}

.empty-state {
  display: none;
  justify-items: start;
  gap: 18px;
  margin-top: 1px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--black);
  background: var(--paper);
}

.empty-state.is-visible {
  display: grid;
}

.empty-state p {
  margin: 0;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  line-height: 0.98;
}

.catalog-request {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: clamp(18px, 3vw, 34px) clamp(12px, 3vw, 36px) clamp(26px, 5vw, 64px);
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 72px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 239, 231, 0.96)),
    var(--paper);
  color: var(--black);
  text-align: center;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.06);
}

.catalog-request h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 7vw, 112px);
  line-height: 0.88;
}

.catalog-request p:not(.kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 750;
  line-height: 1.28;
}

.product-button {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #f2f0e9;
  color: var(--white);
  cursor: pointer;
  border-radius: 30px;
}

.product-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28) 34%, transparent 64%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 28%);
  opacity: 0.9;
  transition: opacity 320ms var(--ease);
}

.product-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--variant-color);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 260ms var(--ease), background 260ms var(--ease);
}

.product-card.has-variant-preview .product-button::before {
  opacity: 0.24;
}

.product-button img {
  width: 100%;
  aspect-ratio: 4 / 5.25;
  object-fit: contain;
  object-position: center;
  background: #f5f4ef;
  border-radius: 30px;
  filter: grayscale(1);
  transform: scale(1.01);
  transition: transform 620ms var(--ease), filter 620ms var(--ease);
}

.product-button img.is-fallback {
  object-fit: contain;
  filter: none;
}

.product-button:hover img {
  transform: scale(1.055);
  filter: grayscale(1) contrast(1.12);
}

.product-button:hover img.is-fallback {
  transform: scale(1);
  filter: none;
}

.product-button:hover::after {
  opacity: 1;
}

.badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
}

.product-meta {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  justify-items: start;
  gap: 9px;
  text-align: left;
}

.product-meta strong {
  max-width: min(100%, 320px);
  color: var(--white);
  font-size: clamp(19px, 1.45vw, 29px);
  font-weight: 900;
  line-height: 1.06;
  text-wrap: balance;
}

.product-meta small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.catalog-price-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.catalog-price-line s {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
}

.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  padding: 8px 10px;
  border-radius: 999px;
  background: #d92d20;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.color-swatches {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  max-width: calc(100% - 120px);
  padding: 0;
  background: transparent;
}

.color-dot {
  position: relative;
  width: 23px;
  height: 23px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: var(--dot-color);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.34), 0 8px 18px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.color-dot.is-active,
.color-dot:hover,
.color-dot:focus-visible {
  box-shadow: 0 0 0 1px var(--white), 0 0 0 3px var(--black), 0 10px 22px rgba(0, 0, 0, 0.32);
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
}

.product-grid.card-size-medium .product-meta {
  left: 16px;
  right: 16px;
  bottom: 16px;
  gap: 8px;
}

.product-grid.card-size-medium .product-meta strong {
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.08;
}

.product-grid.card-size-medium .product-meta small {
  min-height: 28px;
  padding: 0 10px;
  font-size: 10px;
}

.product-grid.card-size-medium .color-swatches {
  top: 14px;
  right: 14px;
  gap: 6px;
  max-width: calc(100% - 40px);
  padding: 0;
}

.product-grid.card-size-medium .color-dot {
  width: 20px;
  height: 20px;
}

.product-grid.card-size-small .product-meta {
  left: 12px;
  right: 12px;
  bottom: 12px;
  gap: 6px;
}

.product-grid.card-size-small .product-meta strong {
  font-size: 13px;
  line-height: 1.08;
}

.product-grid.card-size-small .product-meta small {
  min-height: 20px;
  padding: 0 6px;
  font-size: 8px;
}

.product-grid.card-size-small .color-swatches {
  top: 8px;
  right: 8px;
  gap: 3px;
  max-width: calc(100% - 62px);
  padding: 0;
}

.product-grid.card-size-small .color-dot {
  width: 16px;
  height: 16px;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(18px, 3vw, 34px);
  min-height: 100vh;
  padding: calc(76px + clamp(18px, 3vw, 34px)) clamp(18px, 4vw, 56px) clamp(24px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(232, 228, 218, 0.86)),
    var(--paper);
}

.product-gallery {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: calc(100vh - 132px);
  padding: 0;
  background: transparent;
}

.gallery-stage {
  position: relative;
  width: 100%;
  min-height: min(70vh, 740px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(238, 234, 224, 0.72) 62%, rgba(216, 209, 194, 0.52)),
    #eee9dc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.gallery-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent);
}

.gallery-main-image {
  width: min(820px, 96%);
  max-height: min(58vh, 610px);
  object-fit: contain;
  filter: none;
  transition: transform 420ms var(--ease), object-position 420ms var(--ease), filter 420ms var(--ease);
}

.gallery-main-image.is-silhouette {
  transform: scale(1.08);
}

.gallery-main-image.is-detail {
  transform: scale(1.34);
  object-position: 54% 42%;
}

.gallery-main-image.is-shape {
  transform: scale(0.92);
  object-position: center bottom;
}

.gallery-tabs {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.gallery-tab {
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.58);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.gallery-tab.is-active {
  background: var(--white);
  color: var(--black);
}

.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  background: transparent;
  cursor: pointer;
  opacity: 0.52;
  transform: translateY(-50%);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-prev::before {
  transform: rotate(45deg);
}

.gallery-arrow-next {
  right: 18px;
}

.gallery-arrow-next::before {
  transform: rotate(225deg);
}

.gallery-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.gallery-count {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumb {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #eee9dc;
  cursor: pointer;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transform: scale(1.08);
  border-radius: 8px;
}

.gallery-thumb img.is-detail {
  transform: scale(1.75);
}

.gallery-thumb img.is-shape {
  transform: scale(0.94);
}

.gallery-thumb span {
  position: absolute;
  left: 10px;
  bottom: 9px;
  color: var(--black);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.product-details {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
  min-height: calc(100vh - 132px);
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 244, 239, 0.96)),
    var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.product-details h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.9;
}

.product-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-row span,
.size-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price-panel {
  width: min(100%, 520px);
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--black);
}

.product-price-panel span,
.product-price-panel small,
.option-head span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price-panel strong {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.9;
}

.product-price-panel small {
  min-height: 14px;
  color: rgba(0, 0, 0, 0.62);
}

.product-description {
  max-width: 520px;
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
  line-height: 1.25;
}

.product-sizes {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 10px;
}

.product-colors {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}

.product-color-pill {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  transition: background 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}

.product-color-pill i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--dot-color);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.product-color-pill:hover,
.product-color-pill.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.product-option-block {
  width: min(100%, 620px);
  display: grid;
  gap: 12px;
}

.option-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.option-head span {
  color: rgba(0, 0, 0, 0.48);
}

.option-head strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-pill {
  min-height: 68px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 7px;
  padding: 12px 14px;
  border-color: rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  text-align: left;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.color-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), inset 0 0 0 999px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.size-pill span {
  font-size: 18px;
  line-height: 1;
}

.size-pill small {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transition: color 220ms var(--ease);
}

.size-pill:hover,
.size-pill.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.size-pill:hover small,
.size-pill.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lab {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 46vh;
  background: var(--black);
  color: var(--white);
}

.compact-lab {
  align-content: center;
  justify-items: center;
  gap: 26px;
  padding: clamp(42px, 8vw, 104px) clamp(18px, 4vw, 56px);
  text-align: center;
}

.compact-lab h2 {
  max-width: 880px;
}

.lab-logo {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.lab-logo img {
  width: min(340px, 62vw);
}

.lab-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 28px;
  padding: clamp(40px, 7vw, 96px);
}

.order-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--black);
}

.order-panel img {
  width: 100%;
  min-height: 48vh;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 32px 0 0 32px;
}

.order-panel > div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 26px;
  padding: clamp(34px, 7vw, 92px);
  background: var(--paper);
  border-radius: 0 32px 32px 0;
}

.request-card p:not(.kicker) {
  max-width: 470px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 750;
  line-height: 1.25;
}

.request-form {
  width: min(100%, 620px);
  display: grid;
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 18px;
  background: transparent;
  color: var(--black);
  font-size: 15px;
  font-weight: 750;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.request-form textarea {
  min-height: 108px;
  padding-top: 14px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--black);
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.34);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(42px, 6vw, 80px);
}

.request-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(34px, 5vw, 64px);
  background: var(--black);
}

.request-info article {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--paper);
  border-radius: 28px;
}

.request-info span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 11px;
  font-weight: 900;
}

.request-info h2 {
  font-size: clamp(26px, 3vw, 46px);
}

.request-info p {
  max-width: 360px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.request-service {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(34px, 5vw, 64px);
  background: var(--black);
}

.request-service > div {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 300px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper);
  border-radius: 28px;
}

.request-service h2 {
  max-width: 620px;
}

.service-lines {
  gap: 1px;
  padding: 0;
  background: var(--black);
}

.service-lines p {
  min-height: 120px;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 24px clamp(22px, 4vw, 44px);
  background: var(--paper);
  color: rgba(0, 0, 0, 0.64);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 850;
  line-height: 1.15;
}

.contact-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.contact-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.contact-card span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 0.98;
}

.contact-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1.2fr);
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(28px, 5vw, 56px);
}

.admin-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: rgba(255, 255, 255, 0.34);
  border-radius: 28px;
}

.admin-panel-wide {
  grid-column: 1 / -1;
}

.admin-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-import-button {
  cursor: pointer;
}

.admin-panel-note {
  max-width: 320px;
  margin: 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.admin-panel h2 {
  font-size: clamp(34px, 4vw, 60px);
}

.admin-stock-flow {
  gap: 16px;
  padding: clamp(18px, 2.5vw, 28px);
  overflow: visible;
}

.admin-stock-flow .admin-panel-head {
  align-items: start;
}

.admin-stock-flow h2 {
  max-width: 760px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.98;
}

.admin-mode-panel-stock {
  max-width: 1120px;
}

.admin-manual-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 18px;
}

.admin-mode-switch {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: start;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.admin-mode-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.admin-mode-button:hover,
.admin-mode-button.is-active {
  background: var(--black);
  color: var(--white);
}

.admin-mode-panel {
  display: none;
}

.admin-mode-panel.is-active {
  display: block;
}

.admin-mode-panel-stock {
  max-width: 680px;
}

.admin-mode-panel-manual {
  max-width: none;
  scroll-margin-top: 96px;
}

.admin-mode-panel-manual .admin-manual-grid {
  grid-template-columns: minmax(420px, 620px) minmax(360px, 1fr);
  align-items: start;
  max-width: none;
  gap: 16px;
}

.admin-mode-panel-manual .poizon-panel,
.admin-mode-panel-manual .poizon-preview {
  min-height: 0;
  border-radius: 28px;
  position: sticky;
  top: 96px;
}

.admin-mode-panel-manual .poizon-panel {
  padding: clamp(18px, 2vw, 24px);
}

.admin-mode-panel-manual .poizon-card {
  grid-template-columns: minmax(180px, 0.82fr) minmax(240px, 1fr);
  min-height: 0;
}

.admin-mode-panel-manual .poizon-image-panel {
  min-height: 360px;
}

.admin-mode-panel-manual .poizon-image-panel img,
.admin-mode-panel-manual .poizon-card > img {
  min-height: 360px;
}

.admin-mode-panel-manual .poizon-card-copy {
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
}

.admin-mode-panel-manual .poizon-card h2 {
  overflow-wrap: anywhere;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 0.95;
}

.admin-mode-panel-manual .poizon-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-mode-panel-manual .poizon-price-grid div {
  min-height: 50px;
  padding: 10px 12px;
}

.admin-mode-panel-manual .poizon-price-grid dd {
  font-size: 15px;
}

.discount-editor {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 12px;
}

.discount-editor label {
  display: grid;
  gap: 8px;
}

.admin-manual-title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.98;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 8px;
}

.admin-form label span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--black);
  font-size: 15px;
  font-weight: 760;
}

.admin-form textarea {
  min-height: 104px;
  padding-top: 14px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}

.stock-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stock-summary span {
  display: grid;
  gap: 4px;
  min-height: 82px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-summary strong {
  color: var(--black);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1;
}

.stock-table-wrap {
  overflow-x: auto;
}

.stock-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 13px;
  font-weight: 800;
}

.stock-table th,
.stock-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.stock-table th {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-table td strong,
.stock-table td small {
  display: block;
}

.stock-table td small {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  text-transform: uppercase;
}

.stock-rows-shell,
.manual-color-builder {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
}

.stock-rows-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stock-rows-head > span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-rows-list {
  display: grid;
  gap: 8px;
}

.stock-row {
  display: grid;
  position: relative;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr) minmax(120px, 0.8fr);
  gap: 10px;
  align-items: end;
  padding: 12px 58px 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.stock-row-color {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: auto minmax(116px, 0.65fr) minmax(128px, 1fr) minmax(128px, 1fr);
  gap: 8px;
  align-items: end;
}

.stock-row-color > div,
.stock-row-color label {
  display: grid;
  gap: 8px;
}

.stock-row-color [hidden] {
  display: none;
}

.stock-row > label:nth-of-type(2),
.stock-row > label:nth-of-type(3),
.stock-row > label:nth-of-type(4) {
  grid-row: 2;
}

.stock-row > label:nth-of-type(2) {
  grid-column: 1;
}

.stock-row > label:nth-of-type(3) {
  grid-column: 2 / 4;
}

.stock-row > label:nth-of-type(4) {
  grid-column: 4;
}

.stock-row .manual-row-remove {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  align-self: center;
  justify-self: end;
}

.manual-color-builder {
  grid-template-columns: minmax(130px, 1fr) 0.8fr minmax(140px, 1fr) minmax(140px, 1fr);
  align-items: end;
}

.manual-color-builder > div,
.manual-color-builder label {
  display: grid;
  gap: 8px;
}

.form-row > .manual-color-builder {
  grid-column: 1 / -1;
}

.manual-color-builder [hidden] {
  display: none;
}

.manual-color-preview {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: #050505;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.34), 0 8px 18px rgba(0, 0, 0, 0.12);
}

.poizon-import {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(14px, 2vw, 24px);
  padding: 0 clamp(14px, 4vw, 56px) clamp(40px, 6vw, 78px);
}

.poizon-panel,
.poizon-preview {
  min-height: 560px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 239, 231, 0.98)),
    var(--paper);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.06);
}

.poizon-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 64px);
}

.manual-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-mode-panel-manual .manual-headline {
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-small-button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
}

.manual-rows-shell {
  display: grid;
  gap: 10px;
}

.manual-rows-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-mode-panel-manual .manual-rows-head {
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.035);
}

.manual-rows-head > div {
  display: grid;
  gap: 6px;
}

.manual-rows-list {
  display: grid;
  gap: 10px;
}

.manual-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.9fr) minmax(90px, 0.7fr) minmax(90px, 0.6fr) minmax(120px, 0.9fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.admin-mode-panel-manual .manual-row {
  grid-template-columns: 1fr 0.82fr 0.7fr 1fr 36px;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.manual-row-meta {
  grid-column: 1 / -2;
  min-height: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}

.manual-row-remove {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(0, 0, 0, 0.68);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.admin-mode-panel-manual .manual-row-remove {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 16px;
}

.manual-row-remove:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.poizon-panel h2,
.poizon-card h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.9;
}

.poizon-panel p:not(.kicker),
.poizon-card-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
}

.poizon-parser-note {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 13px !important;
}

.poizon-source-link {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.64);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.poizon-source-link:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.poizon-form {
  display: grid;
  gap: 14px;
}

.admin-mode-panel-manual .poizon-form {
  gap: 11px;
}

.poizon-form label {
  display: grid;
  gap: 8px;
}

.manual-combobox {
  position: relative;
}

.poizon-form span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.poizon-form input,
.poizon-form select,
.poizon-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.admin-mode-panel-manual .poizon-form input,
.admin-mode-panel-manual .poizon-form select,
.admin-mode-panel-manual .poizon-form textarea {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 18px;
  font-size: 13px;
}

.admin-mode-panel-manual .poizon-form textarea {
  min-height: 86px;
  padding: 12px 13px;
}

.poizon-form textarea {
  min-height: 126px;
  padding: 15px 16px;
  line-height: 1.35;
  resize: vertical;
}

.poizon-form input[type="file"] {
  padding: 14px 16px;
  line-height: 1.2;
}

.poizon-form select {
  appearance: none;
  cursor: pointer;
}

.poizon-form input:focus,
.poizon-form select:focus,
.poizon-form textarea:focus {
  border-color: var(--black);
  background: var(--white);
}

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

.manual-segment {
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.admin-mode-panel-manual .manual-segmented {
  gap: 6px;
}

.admin-mode-panel-manual .manual-segment {
  min-height: 40px;
  font-size: 11px;
}

.manual-segment:not(.is-active) {
  background: rgba(255, 255, 255, 0.56);
  color: rgba(0, 0, 0, 0.62);
  border-color: rgba(0, 0, 0, 0.14);
}

.manual-segment:hover,
.manual-segment.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.manual-segment:active {
  transform: translateY(1px);
}

.manual-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: none;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.manual-suggestions.is-open {
  display: grid;
}

.manual-suggestion {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--black);
  font-size: 13px;
  font-weight: 820;
  text-align: left;
  cursor: pointer;
  transition: background 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}

.manual-suggestion:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.rate-status {
  margin-top: -2px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.poizon-preview {
  overflow: hidden;
}

.poizon-empty {
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 64px);
  text-align: center;
}

.poizon-empty span {
  color: rgba(0, 0, 0, 0.44);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.poizon-empty p {
  max-width: 360px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.3;
}

.poizon-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 100%;
}

.poizon-image-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f3f1ea;
}

.poizon-image-panel img,
.poizon-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  background: #f3f1ea;
  filter: grayscale(1);
}

.poizon-image-panel small {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(0, 0, 0, 0.55);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.poizon-image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.poizon-card-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 64px);
}

.poizon-draft .poizon-card-copy {
  align-content: start;
}

.poizon-draft-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.poizon-draft-form label {
  display: grid;
  gap: 7px;
}

.poizon-draft-form span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.poizon-draft-form input,
.poizon-draft-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--black);
  font-size: 13px;
  font-weight: 820;
  outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.poizon-draft-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  line-height: 1.35;
  resize: vertical;
}

.poizon-draft-form input:focus,
.poizon-draft-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.poizon-manual-hint {
  margin-top: -4px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.poizon-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.poizon-price-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
}

.poizon-price-grid dt,
.poizon-price-grid dd {
  margin: 0;
}

.poizon-price-grid dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.poizon-price-grid dd {
  font-size: 18px;
  font-weight: 900;
}

.poizon-sizes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 8px;
}

.poizon-size input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.poizon-size {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.poizon-size-empty {
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.22);
  border-radius: 22px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
}

.poizon-size.is-missing-price {
  border-style: dashed;
  color: rgba(0, 0, 0, 0.44);
}

.poizon-size:has(input:checked) {
  background: var(--black);
  color: var(--white);
}

.poizon-size.is-static {
  cursor: default;
}

.poizon-size span,
.poizon-size small {
  font-weight: 900;
}

.poizon-size small {
  color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
}

.poizon-size:has(input:checked) small {
  color: rgba(255, 255, 255, 0.66);
}

.orders-list {
  display: grid;
  gap: 10px;
}

.order-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
}

.order-row div,
.order-row p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.order-customer {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
}

.order-customer div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
}

.order-customer dt,
.order-customer dd,
.order-customer-empty {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.35;
}

.order-customer dt {
  color: rgba(0, 0, 0, 0.42);
  font-weight: 900;
  text-transform: uppercase;
}

.order-customer dd,
.order-customer-empty {
  color: rgba(0, 0, 0, 0.72);
  font-weight: 820;
}

.order-row span,
.muted {
  color: rgba(0, 0, 0, 0.56);
  font-size: 13px;
  font-weight: 760;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-status {
  min-height: 20px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-link {
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.footer-link:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 740ms var(--ease), transform 740ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes markIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }

  to {
    opacity: 0.92;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .cart-button span {
    display: none;
  }

  .account-button span {
    display: inline;
  }

  .brand-story,
  .about-features,
  .visual-menu,
  .catalog-entry,
  .catalog-entry-grid,
  .product-grid,
  .product-grid.card-size-small,
  .product-grid.card-size-medium,
  .product-grid.card-size-large,
  .product-page,
  .contact-grid,
  .request-info,
  .request-service,
  .admin-shell,
  .poizon-import,
  .poizon-card,
  .lab,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .visual-tile {
    min-height: 42vh;
  }

  .catalog-entry-copy {
    min-height: auto;
  }

  .about-features article {
    min-height: auto;
  }

  .catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .price-menu {
    width: min(320px, calc(100vw - 36px));
  }

  .catalog-viewbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-row > span {
    width: 100%;
  }

  .lab-logo {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .admin-panel-wide {
    grid-column: auto;
  }

  .discount-editor {
    grid-template-columns: 1fr;
  }

  .order-row,
  .account-profile,
  .stock-summary {
    grid-template-columns: 1fr;
  }

  .poizon-panel,
  .poizon-preview,
  .poizon-card img {
    min-height: auto;
  }

  .product-page,
  .product-gallery,
  .product-details {
    min-height: auto;
  }

  .checkout-delivery,
  .account-profile-form {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    min-height: 50vh;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .cart-drawer {
    width: 100vw;
    padding: 20px;
    border-radius: 0;
  }

  .cart-item {
    grid-template-columns: 72px 1fr auto;
  }

  .cart-item-image {
    min-height: 78px;
  }

  .checkout-modal,
  .account-modal {
    padding: 10px;
  }

  .checkout-card,
  .account-card {
    border-radius: 22px;
  }

  .brand span {
    font-size: 12px;
  }

  .hero,
  .home-hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 112px 0 112px;
  }

  .hero-status {
    grid-template-columns: 1fr;
  }

  .hero-status a {
    min-height: 36px;
  }

  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    padding-top: 116px;
  }

  .catalog-note {
    justify-self: start;
    text-align: left;
  }

  .catalog-note::after {
    margin-left: 0;
    margin-right: auto;
  }

  .story-copy,
  .story-image {
    min-height: 48vh;
  }

  .visual-tile {
    min-height: 34vh;
  }

  .product-grid.is-list-view .product-button {
    grid-template-columns: 1fr;
  }

  .product-grid.is-list-view .product-button img {
    aspect-ratio: 4 / 3;
  }

  .gallery-stage {
    min-height: 48vh;
  }

  .gallery-tabs {
    top: 10px;
    left: 10px;
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
  }

  .gallery-thumb {
    min-height: 92px;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-manual-grid {
    grid-template-columns: 1fr;
  }

  .admin-mode-switch {
    width: 100%;
  }

  .admin-mode-panel-stock,
  .admin-mode-panel-manual {
    max-width: none;
  }

  .admin-mode-panel-manual .admin-manual-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .admin-mode-panel-manual .poizon-price-grid {
    grid-template-columns: 1fr;
  }

  .stock-row,
  .manual-color-builder {
    grid-template-columns: 1fr 1fr;
  }

  .stock-row {
    padding-right: 58px;
  }

  .stock-row-color {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .stock-row > label:nth-of-type(2),
  .stock-row > label:nth-of-type(3),
  .stock-row > label:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .stock-row .manual-row-remove {
    top: 12px;
    transform: none;
  }

  .manual-headline {
    display: grid;
  }

  .manual-rows-head {
    display: grid;
  }

  .manual-row {
    grid-template-columns: 1fr 1fr;
  }

  .manual-row-meta {
    grid-column: 1 / -1;
  }

  .manual-row-remove {
    width: 100%;
  }

  .manual-segmented {
    grid-template-columns: 1fr;
  }

  .product-meta strong {
    max-width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
