:root {
  --ink: #111315;
  --muted: #626870;
  --line: #e8e3dc;
  --soft: #f7f4ef;
  --panel: #ffffff;
  --dark: #17191d;
  --gold: #b68b52;
  --accent: #7b4a39;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(25, 24, 22, .10);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
img,
video {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  flex-direction: column;
  min-width: 170px;
  font-weight: 800;
  letter-spacing: 0;
}
.logo span {
  font-size: 24px;
}
.logo small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.2px;
}
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #2a2c30;
}
.nav a:hover,
.text-link:hover {
  color: var(--gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language {
  color: var(--muted);
  font-size: 13px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}
.btn-soft {
  background: #fff;
  color: var(--ink);
}
.btn-gold {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f7f3ee 0%, #ffffff 60%);
}
.hero-slider {
  position: relative;
}
.hero-slide {
  display: none;
  padding: 72px 0 58px;
}
.hero-slide.is-active {
  display: block;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 54px;
}
.hero-copy {
  padding: 16px 0;
}
.eyebrow,
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.hero h2 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero-subtitle {
  max-width: 630px;
  color: #34373c;
  font-size: 19px;
  margin-bottom: 28px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.proof-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  padding: 14px;
}
.proof-icon {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 7px;
}
.proof-title {
  font-weight: 800;
  font-size: 14px;
}
.proof-text {
  color: var(--muted);
  font-size: 12px;
}
.hero-cta,
.catalog-cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-media {
  position: relative;
  min-height: 530px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eee;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* The original homepage artwork is a complete horizontal banner with its
   typography already composed into the image. Show the whole artwork instead
   of cropping it into the right-hand media column. */
.hero .hero-slide {
  padding: 0;
}
.hero .hero-grid {
  display: block;
  width: 100%;
  max-width: none;
}
.hero .hero-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.hero .hero-media {
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  background: #f7f3ee;
}
.hero .hero-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.hero-nav {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(17, 19, 21, .22);
  cursor: pointer;
}
.hero-dot.is-active {
  background: var(--gold);
}
.hero-arrows {
  position: absolute;
  right: 34px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}
.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
.section {
  padding: 76px 0;
}
.section-tight {
  padding: 34px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
  margin-bottom: 0;
}
.section-copy {
  max-width: 680px;
  color: var(--muted);
}
.page-hero {
  padding: 72px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(36px, 4vw, 60px);
}
.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}
.collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.collection-nav a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  color: #333;
  font-size: 13px;
}
.category-grid,
.product-showcase-grid,
.sample-showcase-grid,
.guide-grid,
.trust-link-grid,
.process-grid,
.faq-grid,
.evidence-grid,
.video-grid {
  display: grid;
  gap: 22px;
}
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-showcase-grid,
.sample-showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-showcase-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.guide-grid,
.trust-link-grid,
.process-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.evidence-grid,
.video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.panel,
.category-card,
.product-card,
.guide-card,
.process-card,
.faq-item,
.evidence-card,
.video-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.panel-pad,
.category-card,
.guide-card,
.process-card,
.faq-item {
  padding: 26px;
}
.category-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #eee;
}
.category-card h3,
.product-card h3,
.guide-card h3,
.faq-item h3 {
  font-size: 21px;
  line-height: 1.18;
  margin-bottom: 10px;
}
.category-card p,
.product-card p,
.guide-card p,
.faq-item p,
.evidence-card p,
.video-card p {
  color: var(--muted);
}
.product-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  background: #fff;
  display: block;
}
.sample-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.catalog-highlight-grid .sample-card img {
  object-position: top left;
}
.product-card-body,
.evidence-card div,
.video-card div {
  padding: 22px;
}
.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-card-body h3 {
  min-height: 50px;
}
.product-card-body .text-link {
  margin-top: auto;
}
.product-card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#featured .product-card-body p {
  display: none;
}
#featured .product-card-body {
  min-height: 132px;
}
.product-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}
.dark-band {
  color: #fff;
  background: var(--dark);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.metric strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}
.metric span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.split,
.content-layout,
.rfq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 34px;
  align-items: start;
}
.factory-image-main img,
.trust-image {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.factory-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 16px;
  margin-top: 16px;
}
.factory-grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}
.stack {
  display: grid;
  gap: 16px;
}
.check-list {
  padding-left: 18px;
  margin: 20px 0;
}
.check-list li {
  margin-bottom: 10px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th,
.data-table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}
.table-scroll {
  overflow-x: auto;
}
.article-body {
  font-size: 17px;
}
.side-panel a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-weight: 700;
}
.evidence-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: #eee;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #11131b;
  display: block;
}
.trust-video-head {
  margin-top: 42px;
}
.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  font-weight: 800;
  font-size: 13px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
}
textarea {
  min-height: 128px;
  resize: vertical;
}
.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.contact-strip a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.section-link-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 8px;
}
.float-actions a {
  width: 48px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.footer {
  padding: 34px 0;
  color: rgba(255,255,255,.72);
  background: var(--dark);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1100px) {
  .nav {
    display: none;
  }
  .hero-grid,
  .split,
  .content-layout,
  .rfq {
    grid-template-columns: 1fr;
  }
  .product-showcase-grid,
  .sample-showcase-grid,
  .product-showcase-grid-wide,
  .category-grid,
  .guide-grid,
  .trust-link-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1320px);
  }
  .header-inner {
    min-height: 64px;
  }
  .header-actions .btn {
    display: none;
  }
  .logo span {
    font-size: 21px;
  }
  .hero-slide {
    padding: 48px 0;
  }
  .hero-proof,
  .product-showcase-grid,
  .sample-showcase-grid,
  .product-showcase-grid-wide,
  .category-grid,
  .guide-grid,
  .trust-link-grid,
  .process-grid,
  .faq-grid,
  .evidence-grid,
  .video-grid,
  .metrics,
  .form {
    grid-template-columns: 1fr;
  }
  .hero-media,
  .hero-media img {
    min-height: 420px;
  }
  .section {
    padding: 54px 0;
  }
  .section-head,
  .catalog-cta,
  .footer-inner {
    display: block;
  }
  .float-actions {
    right: 12px;
    bottom: 12px;
  }
}


.product-detail-hero {
  padding-bottom: 42px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .74fr);
  gap: 34px;
  align-items: start;
}
.product-detail-media {
  padding: 18px;
  background: #f3f1ed;
}
.product-detail-media img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  background: #f3f1ed;
}
.product-detail-info h2 {
  margin-top: 12px;
}
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.spec-item {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.spec-item b {
  color: var(--dark);
}
.spec-item span {
  color: var(--muted);
}
.detail-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
@media (max-width: 960px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-spec-grid {
    grid-template-columns: 1fr;
  }
}

.stock-moq-bar{display:flex;justify-content:center;align-items:center;gap:18px;flex-wrap:wrap;padding:12px 5%;background:#111;color:#fff;text-align:center;font-size:14px}.stock-moq-bar strong{color:#f0c66a;font-size:16px}.stock-moq-bar a{color:#fff;text-decoration:underline;font-weight:700}.form-status{min-height:24px;font-weight:700}.form-status.success{color:#16784a}.form-status.error{color:#b42318}.hp-field{position:absolute!important;left:-9999px!important}.consent{display:flex;gap:8px;align-items:flex-start;font-size:13px}.consent input{width:auto;margin-top:3px}@media(max-width:720px){.stock-moq-bar{gap:6px}.stock-moq-bar span{width:100%}}
