@font-face {
  font-family: "IRANSansSNB";
  src: url("/snb_website/static/src/fonts/IRANSansWeb-FaNum-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansSNB";
  src: url("/snb_website/static/src/fonts/IRANSansWeb-FaNum-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansSNB";
  src: url("/snb_website/static/src/fonts/IRANSansWeb-FaNum-Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f6f3;
  --ink: #151716;
  --muted: #69706b;
  --line: rgba(21, 23, 22, 0.12);
  --surface: #ffffff;
  --sage: #61715e;
  --sage-dark: #283027;
  --clay: #b86643;
  --clay-dark: #4a281f;
  --paper: #f5f6f3;
  --shadow: 0 24px 80px rgba(17, 19, 18, 0.14);
  --radius: 8px;
  --max: 1180px;
  font-family:
    "IRANSansSNB", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  transition:
    background-color 450ms ease,
    color 450ms ease;
}

[dir="ltr"] {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.theme-dark {
  --bg: #121412;
  --ink: #f7f7f2;
  --muted: #bdc4bc;
  --line: rgba(247, 247, 242, 0.16);
  --surface: #191c19;
}

body.theme-sage {
  --bg: #e8ece5;
  --ink: #182016;
  --muted: #5f695d;
  --line: rgba(24, 32, 22, 0.14);
  --surface: #f9faf7;
}

body.theme-clay {
  --bg: #f0e7df;
  --ink: #211613;
  --muted: #6c5a51;
  --line: rgba(33, 22, 19, 0.15);
  --surface: #fbf7f3;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 16px 18px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(245, 246, 243, 0.72);
  color: #151716;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  transition:
    transform 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease;
}

.site-header.is-dark {
  background: rgba(18, 20, 18, 0.68);
  color: #f7f7f2;
  border-color: rgba(255, 255, 255, 0.14);
}

.brand-lockup {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-lockup img {
  width: 42px;
  height: 34px;
  object-fit: contain;
  filter: none;
}

.site-header.is-dark .brand-lockup img {
  filter: none;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
}

.brand-lockup strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand-lockup small {
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.74;
  transition:
    opacity 200ms ease,
    background-color 200ms ease;
}

.main-nav a:hover {
  background: rgba(127, 132, 124, 0.14);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-menu {
  position: relative;
}

.language-current {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 4px 3px 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.78;
}

.language-current span {
  min-width: 34px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  background: #151716;
  color: #f7f7f2;
}

.language-current small {
  font-size: 11px;
  font-weight: 800;
}

.site-header.is-dark .language-current span {
  background: #f7f7f2;
  color: #151716;
}

.language-options {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 8px);
  min-width: 152px;
  display: grid;
  padding: 6px;
  border: 1px solid rgba(21, 23, 22, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #151716;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 0;
  padding: 0 10px;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-align: inherit;
}

.language-options button:hover {
  background: rgba(21, 23, 22, 0.08);
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: #151716;
  color: #f7f7f2;
}

.button-light {
  background: #f7f7f2;
  color: #151716;
}

.button-outline {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #ffffff;
}

.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.section-snap {
  position: relative;
  min-height: 92vh;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2)) 80px;
  overflow: clip;
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #ffffff;
}

.hero-media,
.hero-media::after,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: #151716;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.04);
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 14, 12, 0.88), rgba(12, 14, 12, 0.34) 48%, rgba(12, 14, 12, 0.58)),
    linear-gradient(0deg, rgba(12, 14, 12, 0.78), transparent 45%);
}

[dir="rtl"] .hero-media::after {
  background:
    linear-gradient(-90deg, rgba(12, 14, 12, 0.88), rgba(12, 14, 12, 0.34) 48%, rgba(12, 14, 12, 0.58)),
    linear-gradient(0deg, rgba(12, 14, 12, 0.78), transparent 45%);
}

.hero-overlay {
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

[dir="rtl"] .hero-overlay {
  mask-image: linear-gradient(-90deg, black, transparent 72%);
}

.hero-content {
  width: min(790px, 100%);
  padding-bottom: 10vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.3vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-proof {
  position: absolute;
  inset-inline-end: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.intro,
.proof-strip,
.catalog-strip,
.contact {
  color: var(--ink);
}

.section-label {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  margin-bottom: 64px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.section-label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label strong {
  max-width: 610px;
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.22;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.statement h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-copy {
  padding-top: 10px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
}

.trust-row {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.trust-row span {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 900;
}

.proof-strip {
  min-height: auto;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.proof-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proof-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: rgba(21, 23, 22, 0.84);
}

.proof-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: 0;
}

.proof-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(21, 23, 22, 0.86);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.45;
}

.proof-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 900;
  line-height: 1;
}

.proof-card:hover .proof-link {
  transform: translateY(-2px);
}

.product-story {
  min-height: 210vh;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  color: var(--ink);
}

.sticky-copy {
  position: sticky;
  top: 144px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-copy h2 {
  max-width: 430px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.sticky-copy p:not(.eyebrow) {
  max-width: 370px;
  color: var(--muted);
}

.story-progress {
  width: min(300px, 100%);
  height: 3px;
  margin-top: 34px;
  background: rgba(24, 32, 22, 0.16);
}

.story-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--sage-dark);
  transition: width 180ms linear;
}

.story-panels {
  display: grid;
  gap: 80px;
  padding: 42vh 0 28vh;
}

.story-panel {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0.54;
  transform: scale(0.96);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.story-panel.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 46%);
}

.story-panel span {
  position: relative;
  z-index: 1;
  padding: 34px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.16;
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32vw);
  gap: 1px;
  background: var(--line);
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.category-scroll-shell {
  display: grid;
  gap: 18px;
}

.rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rail-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.rail-head a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.category-item {
  min-width: 260px;
  display: grid;
  grid-template-rows: 270px 1fr;
  background: var(--surface);
  scroll-snap-align: start;
}

.category-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #ffffff;
}

.category-item div {
  padding: 24px;
}

.category-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.category-item h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.28;
}

.category-item p {
  color: var(--muted);
  font-size: 14px;
}

.banner-pair {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.site-banner {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(21, 23, 22, 0.78), rgba(21, 23, 22, 0.34)),
    var(--surface);
  color: #f7f7f2;
  overflow: hidden;
  position: relative;
}

.site-banner::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.banner-catalog {
  background:
    linear-gradient(135deg, rgba(40, 48, 39, 0.92), rgba(97, 113, 94, 0.72)),
    url("/snb_website/static/src/img/product-bread-basket.webp") center/cover;
}

.banner-export {
  background:
    linear-gradient(135deg, rgba(74, 40, 31, 0.9), rgba(184, 102, 67, 0.72)),
    url("/snb_website/static/src/img/product-wood-stand.webp") center/cover;
}

.site-banner > * {
  position: relative;
  z-index: 1;
}

.site-banner span {
  display: block;
  margin-bottom: 16px;
  color: rgba(247, 247, 242, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-banner h2 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.18;
}

.site-banner p {
  max-width: 520px;
  color: rgba(247, 247, 242, 0.76);
  font-size: 16px;
}

.featured-products {
  color: var(--ink);
}

.featured-products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.featured-products-head p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.featured-product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 300px 1fr;
  background: var(--surface);
}

.featured-product-media {
  display: block;
  overflow: hidden;
  background: #ffffff;
}

.featured-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform 240ms ease;
}

.featured-product-card:hover .featured-product-media img {
  transform: scale(1.035);
}

.featured-product-card > div {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.featured-product-category {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.featured-product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.32;
}

.featured-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-price-line {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(97, 113, 94, 0.08);
}

.product-price-line span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.product-price-line strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.factory {
  color: #f7f7f2;
  background: #121412;
}

.factory::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(97, 113, 94, 0.35), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
  background-size: auto, 36px 36px;
  opacity: 0.55;
}

.factory-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px 70px;
  align-items: center;
  min-height: 64vh;
}

.factory-copy h2 {
  max-width: 600px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.2;
}

.factory-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(247, 247, 242, 0.7);
  font-size: 18px;
}

.factory-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.factory-metrics span {
  min-height: 92px;
  display: flex;
  align-items: end;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 247, 242, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

.factory-action {
  margin-top: 24px;
}

.factory-showcase {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #1a1e1a;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.factory-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.factory-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(18, 20, 18, 0.86));
}

.factory-badge {
  position: absolute;
  z-index: 1;
  inset-inline: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 20, 18, 0.68);
  backdrop-filter: blur(16px);
}

.factory-badge span {
  display: block;
  margin-bottom: 10px;
  color: rgba(247, 247, 242, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.factory-badge strong {
  display: block;
  max-width: 460px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
}

.factory-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(247, 247, 242, 0.6);
  font-size: 13px;
  font-weight: 900;
}

.step strong {
  display: block;
  max-width: 300px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
}

.step p {
  margin-bottom: 0;
  color: rgba(247, 247, 242, 0.66);
  font-size: 15px;
}

.export-flow {
  min-height: 86vh;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-item {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
}

[dir="rtl"] .flow-item {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.flow-item:last-child {
  border-right: 0;
}

[dir="rtl"] .flow-item:last-child {
  border-left: 0;
}

.flow-item span {
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1.16;
}

.flow-item p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 144px;
}

.contact-copy h2 {
  max-width: 560px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.2;
}

.contact-copy p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  font-size: 18px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label.full {
  grid-column: 1 / -1;
}

.lead-form fieldset,
.form-card-head,
.form-fields-group {
  grid-column: 1 / -1;
}

.form-card-head {
  display: grid;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.form-card-head strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.25;
}

.form-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-alert {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(18, 20, 18, 0.54);
  backdrop-filter: blur(10px);
}

.form-alert[hidden] {
  display: none !important;
}

.form-alert-card {
  width: min(430px, 100%);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(21, 23, 22, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #151716;
  padding: 24px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.26);
}

.form-alert-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.3;
}

.form-alert-card p {
  margin: 0;
  color: #69706b;
}

.form-alert-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-inline-start: 22px;
  color: #151716;
  font-size: 14px;
  font-weight: 800;
}

.lead-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.lead-form legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-type-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.customer-type-toggle legend {
  grid-column: 1 / -1;
}

.customer-type-option {
  position: relative;
  display: block;
}

.customer-type-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.customer-type-option span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #151716;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.customer-type-option input:checked + span {
  border-color: #151716;
  background: #151716;
  color: #ffffff;
}

.form-fields-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-fields-group[hidden] {
  display: none;
}

.lead-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #151716;
  outline: none;
}

.lead-form input,
.lead-form select {
  height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  resize: vertical;
  padding: 14px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(97, 113, 94, 0.18);
}

.lead-form input[aria-invalid="true"] {
  border-color: #b86643;
  box-shadow: 0 0 0 3px rgba(184, 102, 67, 0.18);
}

.lead-form .button {
  grid-column: 1 / -1;
  width: max-content;
}

.floating-cta {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #151716;
  color: #f7f7f2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 900;
}

.story-link {
  width: max-content;
  margin-top: 24px;
}

.catalog-hero {
  min-height: 88vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #ffffff;
}

.catalog-hero-content {
  width: min(860px, 100%);
  padding-bottom: 12vh;
}

.catalog-summary {
  position: absolute;
  inset-inline-end: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.catalog-summary div {
  min-width: 120px;
  padding: 16px 18px;
}

.catalog-summary strong,
.catalog-summary span {
  display: block;
}

.catalog-summary strong {
  font-size: 28px;
  line-height: 1;
}

.catalog-summary span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.products-catalog {
  min-height: 100vh;
}

.catalog-tools {
  position: sticky;
  top: 92px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 246, 243, 0.86);
  backdrop-filter: blur(18px);
}

.product-search {
  display: grid;
  gap: 8px;
}

.product-search span,
.catalog-count span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-search input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #151716;
  outline: none;
  padding: 0 16px;
}

.product-search input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(97, 113, 94, 0.16);
}

.catalog-count {
  min-width: 180px;
  display: grid;
  justify-items: end;
  gap: 6px;
  padding-bottom: 6px;
}

[dir="ltr"] .catalog-count {
  justify-items: start;
}

.catalog-count strong {
  font-size: 30px;
  line-height: 1;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
}

.filter-chip {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
}

.filter-chip span {
  color: var(--muted);
  font-size: 11px;
}

.filter-chip.is-active {
  border-color: #151716;
  background: #151716;
  color: #f7f7f2;
}

.filter-chip.is-active span {
  color: rgba(247, 247, 242, 0.68);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 245px 1fr;
  background: var(--surface);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 280ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.image-badge {
  position: absolute;
  inset-inline-start: 10px;
  top: 10px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  background: rgba(21, 23, 22, 0.78);
  color: #f7f7f2;
  font-size: 10px;
  font-weight: 900;
}

.product-card-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-card-meta,
.product-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-meta span,
.product-card-details span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 0 9px;
  font-size: 11px;
  font-weight: 900;
}

.product-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.34;
  letter-spacing: 0;
}

.product-card h2 a {
  transition: color 180ms ease;
}

.product-card h2 a:hover {
  color: var(--sage);
}

.product-card .button {
  width: 100%;
  margin-top: auto;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-view-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.product-view-link:hover {
  border-color: var(--sage);
  background: rgba(97, 113, 94, 0.08);
}

.product-card .button.is-selected {
  background: var(--sage);
}

.detail-price-box {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(97, 113, 94, 0.08);
}

.detail-price-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.detail-price-box strong {
  font-size: 26px;
  line-height: 1.25;
}

.detail-price-box p {
  margin: 0;
  color: var(--muted);
}

.product-detail {
  min-height: auto;
  padding-top: 122px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
  padding: clamp(20px, 4vw, 52px);
}

.product-info h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.08;
}

.product-info p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.detail-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.detail-tags span,
.spec-item {
  display: grid;
  gap: 10px;
  background: var(--surface);
  padding: 18px;
}

.detail-tags small,
.spec-item span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-tags strong,
.spec-item strong {
  font-size: 18px;
  line-height: 1.35;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-spec-section {
  min-height: auto;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.wholesale-panel {
  color: #f7f7f2;
  background: #121412;
}

.wholesale-panel .section-label {
  border-color: rgba(255, 255, 255, 0.16);
}

.wholesale-panel .section-label span {
  color: rgba(247, 247, 242, 0.58);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.wholesale-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  padding: 28px;
}

.wholesale-card span {
  color: rgba(247, 247, 242, 0.45);
  font-size: 13px;
  font-weight: 900;
}

.wholesale-card h2 {
  margin: auto 0 16px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
}

.wholesale-card p {
  margin: 0;
  color: rgba(247, 247, 242, 0.68);
}

.related-products {
  min-height: auto;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.related-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  background: var(--surface);
}

.related-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #ffffff;
  padding: 18px;
}

.related-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.related-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.related-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.missing-product {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 40px;
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}

.missing-product[hidden] {
  display: none;
}

.missing-product strong {
  font-size: clamp(34px, 5vw, 60px);
}

.missing-product p {
  color: var(--muted);
}

.empty-state {
  margin-top: 26px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.request-dock {
  position: fixed;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 22;
  width: min(620px, calc(100vw - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(21, 23, 22, 0.92);
  color: #f7f7f2;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.request-dock[hidden] {
  display: none;
}

.request-dock div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.request-dock strong {
  font-size: 24px;
}

.request-dock span {
  color: rgba(247, 247, 242, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.price-list-page {
  background: #f5f6f3;
  color: #151716;
}

.price-list-hero {
  min-height: auto;
  padding-bottom: 42px;
}

.price-list-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.price-list-actions p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.price-list-actions div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-list-sheet {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto 72px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 70px rgba(17, 19, 18, 0.08);
}

.price-list-sheet-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.price-list-sheet-head span,
.price-list-category span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-list-sheet-head strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.25;
}

.price-list-sheet-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-list-category {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #151716;
  color: #ffffff;
  break-after: avoid;
}

.price-list-category:first-child {
  margin-top: 0;
}

.price-list-category strong {
  font-size: 20px;
  line-height: 1.25;
}

.price-list-category span {
  color: rgba(255, 255, 255, 0.68);
}

.price-list-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  min-height: 170px;
  border: 1px solid #d8ddd4;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
  break-inside: avoid;
}

.price-list-card img {
  width: 118px;
  height: 145px;
  object-fit: contain;
  border-radius: 6px;
  background: #f7f7f2;
  padding: 8px;
}

.price-list-card-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}

.price-list-code {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.price-list-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.price-list-specs {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.price-list-price {
  margin-top: 4px;
  color: #151716;
  font-size: 17px;
  font-weight: 900;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: #ffffff;
}

.not-found-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  padding-bottom: 28vh;
}

.not-found-code {
  display: block;
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(92px, 19vw, 230px);
  font-weight: 950;
  line-height: 0.78;
}

.not-found-content h1 {
  max-width: 800px;
}

.not-found-actions {
  gap: 12px;
}

.not-found-panel {
  position: absolute;
  z-index: 2;
  inset-inline-end: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  width: min(820px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(21, 23, 22, 0.52);
  backdrop-filter: blur(18px);
}

.not-found-panel div {
  min-height: 168px;
  padding: 18px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.14);
}

[dir="ltr"] .not-found-panel div {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
}

.not-found-panel div:last-child {
  border-inline-end: 0;
}

[dir="ltr"] .not-found-panel div:last-child {
  border-right: 0;
}

.not-found-panel span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.not-found-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.45;
}

.not-found-panel p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .section-snap {
    min-height: auto;
    padding: 96px 20px 64px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-bottom: 16vh;
  }

  .hero-proof {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .catalog-summary {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: -94px;
  }

  .not-found-content {
    padding-bottom: 28px;
  }

  .not-found-panel {
    position: relative;
    inset: auto;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .not-found-panel div,
  [dir="ltr"] .not-found-panel div {
    min-height: 0;
    border-right: 0;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .not-found-panel div:last-child {
    border-bottom: 0;
  }

  .section-label,
  .intro-grid,
  .product-story,
  .factory-inner,
  .contact,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .section-label {
    gap: 12px;
    margin-bottom: 42px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .proof-card {
    min-height: 250px;
  }

  .product-story {
    min-height: auto;
    gap: 32px;
  }

  .sticky-copy,
  .contact-copy {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .factory-metrics,
  .factory-steps {
    grid-template-columns: 1fr;
  }

  .factory-showcase,
  .factory-showcase img {
    min-height: 420px;
  }

  .step {
    min-height: 0;
  }

  .story-panels {
    padding: 0;
    gap: 24px;
  }

  .story-panel {
    min-height: 430px;
    opacity: 1;
    transform: none;
  }

  .flow-line {
    grid-template-columns: 1fr;
  }

  .category-rail {
    grid-auto-columns: minmax(260px, 72vw);
  }

  .banner-pair,
  .featured-product-grid {
    grid-template-columns: 1fr;
  }

  .featured-products-head {
    display: grid;
    align-items: start;
  }

  .flow-item {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-item:last-child {
    border-bottom: 0;
  }

  .catalog-tools {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .catalog-count {
    min-width: 0;
    justify-items: start;
  }

  [dir="rtl"] .catalog-count {
    justify-items: end;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-visual {
    min-height: 520px;
  }

  .detail-tags,
  .spec-grid,
  .wholesale-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .form-fields-group {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    display: inline-flex;
  }

  .price-list-actions,
  .price-list-sheet-head {
    display: grid;
    align-items: start;
  }

  .price-list-sheet {
    width: calc(100vw - 40px);
    padding: 18px;
  }

  .price-list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-list-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .price-list-card img {
    width: 96px;
    height: 126px;
  }
}

@media (max-width: 560px) {
  .site-header {
    inset: 10px 10px auto;
    max-width: calc(100vw - 20px);
    padding: 8px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup small {
    display: none;
  }

  .language-current {
    padding-inline-end: 4px;
  }

  .language-current span {
    min-width: 30px;
  }

  .language-current small {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  .hero-proof {
    display: none;
  }

  .catalog-summary {
    grid-template-columns: 1fr;
    margin-top: -70px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .not-found-code {
    font-size: 96px;
  }

  .not-found-actions {
    display: grid;
  }

  .not-found-actions .button,
  .not-found-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .proof-card {
    min-height: 0;
    padding-inline: 6px;
  }

  .proof-card p {
    max-width: 340px;
  }

  .rail-head {
    align-items: start;
    display: grid;
  }

  .site-banner {
    min-height: 360px;
  }

  .featured-product-card {
    grid-template-rows: 260px 1fr;
  }

  .factory-metrics span {
    min-height: 72px;
  }

  .factory-showcase,
  .factory-showcase img {
    min-height: 340px;
  }

  .factory-badge {
    inset-inline: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .step {
    padding: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .product-visual {
    min-height: 360px;
  }

  .product-info h1 {
    font-size: 40px;
  }

  .detail-tags,
  .spec-grid,
  .wholesale-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    display: grid;
  }

  .product-actions .button {
    width: 100%;
  }

  .request-dock {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }

  .request-dock .button {
    width: 100%;
  }

  .category-item {
    grid-template-rows: 220px 1fr;
  }

  .category-item img {
    height: 220px;
  }

  .price-list-grid {
    grid-template-columns: 1fr;
  }

  .price-list-card {
    grid-template-columns: 106px minmax(0, 1fr);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sample-home {
  --bg: #f1f2ef;
  --ink: #111312;
  --muted: #6c716b;
  --line: rgba(17, 19, 18, 0.12);
  background: #f1f2ef;
  overflow-x: hidden;
}

.sample-home .site-header.sample-site-header {
  direction: ltr;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  width: calc(100vw - 30px);
  max-width: 1860px;
  inset: 12px 15px auto;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(17, 19, 17, 0.92);
  color: #f5f3eb;
  box-shadow: 0 18px 58px rgba(17, 19, 18, 0.2);
}

.sample-site-header .brand-lockup {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  direction: rtl;
}

.sample-site-header .brand-lockup img {
  width: 82px;
  height: 54px;
  filter: none;
}

.sample-site-header .main-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  direction: rtl;
  gap: 46px;
}

.sample-site-header .main-nav a {
  color: rgba(245, 243, 235, 0.74);
  font-size: 18px;
  font-weight: 900;
}

.sample-site-header .main-nav a:hover {
  color: #ffffff;
}

.sample-site-header .header-actions {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  direction: rtl;
  gap: 14px;
}

.sample-site-header .button-dark {
  min-height: 62px;
  display: inline-flex;
  padding: 0 28px;
  border: 0;
  background: #0d0f0e;
  color: #ffffff;
  font-size: 18px;
}

.sample-site-header .language-current {
  min-height: 62px;
  gap: 12px;
  border-color: rgba(255, 255, 255, 0.62);
  color: #f7f7f2;
}

.sample-site-header .language-current span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d8d8d4;
  color: #222421;
  font-size: 17px;
}

.sample-site-header .language-current small {
  font-size: 15px;
  font-weight: 900;
}

.sample-home main {
  padding-top: 118px;
}

.sample-hero {
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-scale: 1;
  direction: ltr;
  width: min(1800px, calc(100vw - 78px));
  min-height: min(760px, calc(100vh - 150px));
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
  align-items: stretch;
  margin: 0 auto 72px;
  padding: 0;
  overflow: visible;
  border: 12px solid #eadedc;
  background: #ffffff;
  color: #151716;
}

.sample-hero-copy {
  direction: rtl;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(42px, 6vw, 118px);
  will-change: transform;
}

.sample-hero-copy .eyebrow {
  margin: 0;
  color: #5b665a;
}

.sample-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.9vw, 82px);
  line-height: 1.08;
}

.sample-hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: #3d413c;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.9;
}

.sample-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.sample-hero-actions .text-link,
.sample-section-head a {
  color: #4766ad;
  border-bottom-color: rgba(71, 102, 173, 0.38);
  font-size: 17px;
}

.sample-hero-media {
  direction: rtl;
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #dde5db;
  will-change: transform;
}

.sample-hero-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(var(--scene-scale));
  transition:
    opacity 180ms ease,
    transform 120ms linear;
  will-change: transform;
}

.hero-hotspot {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-scale: 1;
  position: absolute;
  width: clamp(126px, 10vw, 168px);
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(17, 19, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #151716;
  box-shadow: 0 18px 44px rgba(17, 19, 18, 0.18);
  transform: translate3d(var(--motion-x), var(--motion-y), 0) scale(var(--motion-scale));
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.hero-hotspot img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: contain;
  border-radius: 6px;
  background: #f7f7f4;
}

.hero-hotspot span {
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.hero-hotspot:hover,
.hero-hotspot.is-active {
  transform: translate3d(var(--motion-x), calc(var(--motion-y) - 8px), 0) scale(var(--motion-scale));
  box-shadow: 0 26px 70px rgba(17, 19, 18, 0.24);
}

.hotspot-one {
  top: 11%;
  left: 9%;
}

.hotspot-two {
  right: 8%;
  bottom: 12%;
}

.hotspot-three {
  left: 39%;
  bottom: 7%;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: rgba(24, 27, 25, 0.55);
  color: #ffffff;
  font-size: 54px;
  line-height: 0.8;
  cursor: pointer;
}

.hero-arrow-prev {
  right: 18px;
}

.hero-arrow-next {
  left: 18px;
}

.banner-lab {
  min-height: 210vh;
}

.banner-lab-main {
  min-height: 190vh;
  padding-top: 118px;
}

.banner-lab .banner-only-hero {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.banner-scroll-space {
  height: 92vh;
}

.sample-category-section,
.sample-products-section,
.sample-values,
.sample-export,
.sample-contact {
  width: min(1660px, calc(100vw - 72px));
  min-height: auto;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.sample-category-section {
  overflow: visible;
  padding-top: 96px;
}

.sample-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.sample-section-head.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.sample-section-head .eyebrow {
  margin: 0 0 10px;
}

.sample-section-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.12;
}

.sample-category-scroll {
  display: grid;
  grid-auto-columns: minmax(250px, 1fr);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scrollbar-width: thin;
}

.sample-category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 0;
  background: #bdcec7;
  color: #ffffff;
}

.sample-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.sample-category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(17, 19, 18, 0), rgba(17, 19, 18, 0.66));
}

.sample-category-card strong {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  max-width: 82%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: clamp(21px, 1.7vw, 30px);
  line-height: 1.45;
}

.sample-category-card:hover img {
  transform: scale(1.045);
}

.sample-category-card.muted-card {
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background: #b8cec6;
}

.sample-category-card.muted-card::after {
  display: none;
}

.sample-category-card.muted-card strong {
  position: static;
  color: #ffffff;
}

.sample-products-section {
  padding-top: 112px;
}

.featured-product-media {
  position: relative;
}

.featured-product-media .product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.featured-product-card:hover .featured-product-media .product-img-main {
  opacity: 0;
}

.featured-product-card:hover .featured-product-media .product-img-hover {
  opacity: 1;
}

.sample-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  border: 0;
  background: transparent;
}

.sample-product-grid .featured-product-card {
  grid-template-rows: auto 1fr;
  background: transparent;
}

.sample-product-grid .featured-product-media {
  height: 238px;
  border: 1px solid rgba(17, 19, 18, 0.08);
  background: #ffffff;
}

.sample-product-grid .featured-product-media img {
  padding: 22px;
  transition:
    opacity 180ms ease,
    transform 260ms ease;
}

.sample-product-grid .featured-product-card > div {
  padding: 18px 0 0;
}

.sample-product-grid .featured-product-category {
  font-size: 11px;
}

.sample-product-grid .featured-product-card h3 {
  min-height: 58px;
  font-size: clamp(16px, 1.25vw, 21px);
}

.sample-product-grid .product-price-line {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.sample-product-grid .product-price-line strong {
  font-size: clamp(18px, 1.6vw, 26px);
}

.sample-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  padding-top: 128px;
  padding-bottom: 88px;
  text-align: center;
}

.sample-values article {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.sample-value-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
}

.sample-value-icon svg {
  width: 62px;
  height: 62px;
}

.sample-value-icon path {
  fill: none;
  stroke: #202321;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sample-values h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
}

.sample-values p {
  max-width: 330px;
  margin: 0;
  color: #2d302e;
  font-size: 17px;
  line-height: 1.85;
}

.sample-values a {
  border-bottom: 2px solid currentColor;
  font-size: 20px;
  font-weight: 900;
}

.sample-export {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: 58px;
  padding-top: 90px;
  padding-bottom: 70px;
  border-top: 1px solid rgba(17, 19, 18, 0.12);
}

.sample-export h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.2;
}

.sample-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sample-steps article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 18, 0.1);
  background: #ffffff;
}

.sample-steps span {
  color: #7a8478;
  font-size: 14px;
  font-weight: 900;
}

.sample-steps h3 {
  margin: 0;
  font-size: 25px;
}

.sample-steps p {
  margin: 0;
  color: var(--muted);
}

.sample-contact {
  direction: ltr;
  grid-template-columns: minmax(420px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 130px;
}

.sample-contact .lead-form {
  direction: rtl;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.sample-contact .contact-copy {
  direction: rtl;
  position: static;
}

.sample-contact .contact-copy h2 {
  max-width: 760px;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 1.28;
}

.sample-contact .contact-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 2;
}

.sample-footer {
  width: min(1800px, calc(100vw - 30px));
  display: grid;
  grid-template-columns: minmax(300px, 1.3fr) minmax(260px, 0.8fr) minmax(320px, 0.9fr);
  gap: 36px;
  margin: 0 auto 15px;
  padding: 38px;
  border-radius: 8px;
  background: #111312;
  color: #f4f2e9;
}

.sample-footer-brand {
  display: grid;
  gap: 14px;
}

.sample-footer-brand img {
  width: 92px;
  filter: invert(1);
  opacity: 0.22;
}

.sample-footer-brand strong {
  font-size: 28px;
}

.sample-footer-brand p,
.sample-footer-cta span {
  max-width: 460px;
  margin: 0;
  color: rgba(244, 242, 233, 0.68);
}

.sample-footer nav {
  display: grid;
  gap: 14px;
  align-content: start;
}

.sample-footer a:not(.button) {
  color: rgba(244, 242, 233, 0.78);
  font-weight: 900;
}

.sample-footer-cta {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: start;
}

.sample-footer .button-light {
  color: #111312;
}

@media (max-width: 1280px) {
  .sample-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sample-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-hero {
    width: min(100vw - 36px, 1180px);
    grid-template-columns: 0.48fr 0.52fr;
  }
}

@media (max-width: 980px) {
  .sample-home main {
    padding-top: 102px;
  }

  .sample-home .site-header.sample-site-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 10px;
  }

  .sample-site-header .brand-lockup {
    grid-column: 2;
    grid-row: 1;
  }

  .sample-site-header .header-actions {
    grid-column: 1;
    grid-row: 1;
  }

  .sample-site-header .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    gap: 24px;
    padding-top: 6px;
  }

  .sample-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sample-hero-copy {
    padding: 52px 28px;
    transform: none !important;
  }

  .sample-hero-media {
    min-height: 430px;
    transform: none !important;
  }

  .sample-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sample-export,
  .sample-contact,
  .sample-footer {
    grid-template-columns: 1fr;
  }

  .sample-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sample-home,
  .sample-home main {
    width: 100%;
    max-width: 100%;
  }

  .sample-home .section-snap {
    overflow: hidden;
  }

  .sample-home .site-header.sample-site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100vw - 20px);
    inset: 10px 10px auto;
  }

  .sample-site-header .brand-lockup,
  .sample-site-header .header-actions,
  .sample-site-header .main-nav {
    grid-column: auto;
    grid-row: auto;
  }

  .sample-site-header .header-actions {
    order: 1;
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 76px);
    justify-content: flex-start;
  }

  .sample-site-header .brand-lockup {
    order: 2;
    flex: 0 0 auto;
  }

  .sample-site-header .main-nav {
    display: none;
  }

  .sample-site-header .button-dark {
    min-height: 48px;
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .sample-site-header .language-current {
    min-height: 48px;
    padding: 4px;
  }

  .sample-site-header .language-current small {
    display: none;
  }

  .sample-site-header .language-current span {
    width: 40px;
    height: 40px;
  }

  .sample-site-header .brand-lockup img {
    width: 62px;
    height: 42px;
  }

  .sample-hero,
  .sample-category-section,
  .sample-products-section,
  .sample-values,
  .sample-export,
  .sample-contact,
  .sample-footer {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .sample-hero {
    direction: rtl;
    display: flex;
    flex-direction: column;
    border-width: 8px;
    margin-bottom: 34px;
    overflow: hidden;
  }

  .sample-hero-copy {
    width: 100%;
    padding: 44px 22px 28px;
  }

  .sample-hero-copy h1 {
    max-width: 100%;
    font-size: 38px;
    overflow-wrap: break-word;
  }

  .sample-hero-actions .button,
  .sample-hero-actions .text-link {
    max-width: 100%;
    white-space: normal;
  }

  .sample-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 42px;
  }

  .hero-hotspot {
    width: 106px;
  }

  .sample-section-head,
  .sample-section-head.centered {
    display: grid;
    justify-items: start;
    text-align: start;
  }

  .sample-section-head h2 {
    font-size: 38px;
  }

  .sample-category-scroll {
    grid-auto-columns: 78vw;
  }

  .sample-category-card {
    min-height: 360px;
  }

  .sample-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .sample-product-grid .featured-product-media {
    height: 176px;
  }

  .sample-values {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sample-contact {
    padding-bottom: 82px;
  }

  .sample-contact .contact-copy h2 {
    font-size: 46px;
  }
}

@media (max-width: 440px) {
  .sample-product-grid {
    grid-template-columns: 1fr;
  }

  .sample-product-grid .featured-product-media {
    height: 228px;
  }
}

@page {
  size: A4;
  margin: 8mm;
}

@media print {
  body {
    background: #ffffff !important;
    color: #151716 !important;
  }

  .site-header,
  .price-list-hero,
  .price-list-actions,
  .floating-cta {
    display: none !important;
  }

  .price-list-sheet {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .price-list-sheet-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .price-list-sheet-head strong {
    font-size: 20px;
  }

  .price-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .price-list-category {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 0;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .price-list-category strong {
    font-size: 16px;
  }

  .price-list-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 126px;
    padding: 8px;
    border-radius: 0;
  }

  .price-list-card img {
    width: 86px;
    height: 108px;
    padding: 5px;
  }

  .price-list-card h2,
  .price-list-price {
    font-size: 13px;
  }

  .price-list-code,
  .price-list-specs {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.psd-banner-page {
  --psd-bg: #e1d7cf;
  --psd-ink: #171817;
  --psd-muted: #62675f;
  --psd-accent: #a54a16;
  --psd-start: #9cad91;
  --psd-end: #3f5239;
  --psd-wood: #c08a58;
  --psd-scroll: 0;
  min-height: 190vh;
  overflow-x: hidden;
  background: var(--psd-bg);
  color: var(--psd-ink);
}

.psd-banner-main {
  min-height: 190vh;
}

.psd-product-hero {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #f8f7f2 0%, #e5dfd8 100%);
}

.psd-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 23%, rgba(255, 255, 255, 0) 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.psd-copy-panel {
  position: absolute;
  z-index: 6;
  left: clamp(28px, 5vw, 90px);
  bottom: clamp(30px, 5.5vh, 72px);
  width: min(435px, 31vw);
  display: grid;
  gap: 18px;
  direction: rtl;
  padding: clamp(18px, 1.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(20, 22, 20, 0.08);
  transform: translate3d(calc(var(--psd-scroll) * 18px), calc(var(--psd-scroll) * -10px), 0);
  transition: opacity 220ms ease;
}

.psd-copy-panel .eyebrow {
  margin: 0;
  color: var(--psd-accent);
}

.psd-copy-panel h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.22;
}

.psd-copy-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--psd-muted);
  font-size: clamp(15px, 1.08vw, 19px);
  font-weight: 700;
  line-height: 2;
}

.psd-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.psd-feature-list span {
  padding: 9px 13px;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #343832;
  font-size: 13px;
  font-weight: 900;
}

.psd-shape-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.psd-gradient-shape {
  position: absolute;
  top: -0.5%;
  right: -0.1%;
  width: 90.2%;
  height: 100.5%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 54% 100%;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.22), transparent 31%),
    linear-gradient(96deg, var(--psd-start), var(--psd-end));
  box-shadow: inset 55px 0 120px rgba(255, 255, 255, 0.1);
  transform:
    translate3d(calc(var(--psd-scroll) * -36px), calc(var(--psd-scroll) * -8px), 0)
    scale(calc(1 + var(--psd-scroll) * 0.018));
  transition:
    background 520ms ease,
    transform 180ms linear;
}

.psd-title-layer {
  position: absolute;
  z-index: 4;
  right: 14.5%;
  bottom: 13.8%;
  display: grid;
  gap: clamp(16px, 1.7vw, 30px);
  direction: rtl;
  color: #ffffff;
  font-family:
    "Melli_FaNum-Regular", "IRANSansSNB", Tahoma, Arial, sans-serif;
  font-size: clamp(86px, 9.1vw, 176px);
  font-weight: 400;
  line-height: 0.88;
  text-align: right;
  transform:
    translate3d(calc(var(--psd-scroll) * -18px), calc(var(--psd-scroll) * -34px), 0)
    scale(calc(1 + var(--psd-scroll) * 0.012));
  transition:
    opacity 220ms ease,
    transform 180ms linear;
}

.psd-title-layer span {
  display: block;
}

.psd-product-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.psd-product-image {
  position: absolute;
  left: 4.2%;
  top: 3.9%;
  width: min(49.5vw, 960px);
  max-width: none;
  transform:
    translate3d(calc(var(--psd-scroll) * 92px), calc(var(--psd-scroll) * 30px), 0)
    scale(calc(1 - var(--psd-scroll) * 0.022));
  opacity: 1;
  filter: drop-shadow(0 34px 56px rgba(21, 22, 21, 0.2));
  transform-origin: 52% 55%;
  transition:
    transform 580ms cubic-bezier(0.22, 0.8, 0.2, 1),
    opacity 320ms ease,
    filter 320ms ease;
  will-change: transform, opacity;
}

.psd-product-image.is-leaving {
  transform: translate3d(-32vw, -34vh, 0) rotate(-7deg) scale(0.78);
  opacity: 0;
}

.psd-product-image.is-entering {
  transform: translate3d(38vw, 34vh, 0) rotate(5deg) scale(0.78);
  opacity: 0;
}

.psd-product-image.is-active {
  opacity: 1;
}

.psd-controls {
  position: absolute;
  z-index: 8;
  right: clamp(28px, 4vw, 74px);
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.psd-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(22, 24, 22, 0.36);
  color: #ffffff;
  font-size: 36px;
  line-height: 0.7;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.psd-progress {
  position: absolute;
  z-index: 8;
  left: clamp(28px, 5vw, 90px);
  top: clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #292d28;
  font-size: 13px;
  font-weight: 900;
}

.psd-progress i {
  width: 86px;
  height: 1px;
  background: rgba(41, 45, 40, 0.26);
}

.psd-scroll-space {
  height: 90vh;
}

@media (max-width: 980px) {
  .psd-product-hero {
    min-height: 100svh;
  }

  .psd-gradient-shape {
    right: -42%;
    width: 122%;
    border-top-left-radius: 72% 82%;
  }

  .psd-product-image {
    left: -9%;
    top: 14%;
    width: 88vw;
  }

  .psd-title-layer {
    right: 7%;
    bottom: 22%;
    font-size: clamp(58px, 17vw, 92px);
  }

  .psd-copy-panel {
    left: 18px;
    right: 18px;
    bottom: 24px;
    width: auto;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
  }

  .psd-copy-panel h1 {
    font-size: 28px;
  }

  .psd-copy-panel p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.8;
  }

  .psd-controls {
    right: 18px;
  }
}


body[data-page] .o_footer,
body[data-page] .o_header_standard,
body[data-page] header#top {
  display: none !important;
}
