﻿:root {
  --ink: #14130f;
  --muted: #6d6a5e;
  --paper: #f7f2e8;
  --linen: #eee4d2;
  --olive: #66734d;
  --olive-dark: #3f4a31;
  --sand: #d8c6a6;
  --white: #fffdf8;
  --line: rgba(20, 19, 15, 0.13);
  --shadow: 0 22px 60px rgba(20, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 242, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(20, 19, 15, 0.06);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-grid;
  gap: 3px;
  width: 230px;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a {
  position: relative;
  padding: 8px 10px;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-trigger::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
  order: 2;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  min-width: 520px;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: normal;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-group {
  display: grid;
  gap: 8px;
}

.nav-group-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.nav-dropdown a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  line-height: 1.35;
}

.nav-dropdown a:hover {
  color: var(--ink);
}

.nav-overview-link {
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px !important;
  color: var(--ink) !important;
  font-weight: 850;
}

.products-menu .nav-dropdown {
  min-width: 560px;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
}

.about-menu .nav-dropdown {
  min-width: 250px;
  grid-template-columns: 1fr;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--olive-dark);
}

.btn-secondary {
  border-color: var(--olive);
  color: var(--olive-dark);
  background: transparent;
}

.hero .btn-secondary {
  border-color: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 28px rgba(20, 19, 15, 0.18);
}

.hero .btn-secondary:hover {
  color: var(--ink);
  background: var(--white);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background: #1c1b16;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 19, 15, 0.82), rgba(20, 19, 15, 0.48), rgba(20, 19, 15, 0.18));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 132px 0 92px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 860px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  text-wrap: balance;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 18px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 253, 248, 0.86);
  background: rgba(20, 19, 15, 0.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust-points + .hero-actions {
  margin-top: 22px;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head > p {
  max-width: 620px;
}

.grid-3,
.grid-4,
.grid-2,
.category-grid,
.split {
  display: grid;
  gap: 22px;
}

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

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

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

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  padding: 26px;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.card img,
.media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
}

.card h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.category-card {
  display: grid;
  align-content: start;
  min-height: 210px;
}

.category-card .eyebrow {
  margin-bottom: 10px;
}

.category-meta {
  margin-top: 14px;
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 800;
}
.product-category-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: minmax(320px, 36%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 44px rgba(20, 19, 15, 0.07);
}

.category-overview-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: #eadccd;
}

.category-overview-body {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.category-overview-body h2 {
  max-width: 15em;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.category-overview-body > p {
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
}

.category-buyer-points {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.category-buyer-points li {
  position: relative;
  padding-left: 20px;
}

.category-buyer-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
}

.category-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.collection-tags,
.collection-filter-tags,
.product-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-tags span,
.collection-filter-tags span,
.product-mini-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(102, 115, 77, 0.26);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.collection-filter-tags {
  margin: -12px auto 24px;
}

.signature-collections .grid-4 {
  align-items: stretch;
}

.collection-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--linen);
}

.collection-card-body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.collection-card-body h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.18;
}

.collection-card-body .card-link,
.collection-card-body .collection-card-cta {
  align-self: end;
}

.collection-card-cta {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--olive-dark);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.collection-card-cta::after {
  content: "->";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.collection-card-cta:hover {
  border-color: var(--olive);
  background: var(--olive-dark);
  transform: translateY(-1px);
}

.collection-card-cta:hover::after {
  transform: translateX(3px);
}

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

.route-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.72);
}

.route-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-section + .product-section {
  border-top: 1px solid var(--line);
}

.product-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.product-card img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.product-card img[src^="https://img.stellarisle.com/assets/img-ai/products-page/"],
.product-card img[src^="https://img.stellarisle.com/assets/img-ai/products/"] {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--linen);
}

.product-image-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 3 / 4;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(238, 228, 210, 0.7), rgba(255, 253, 248, 0.94));
  color: var(--olive-dark);
}

.product-image-placeholder span {
  border: 1px solid rgba(102, 115, 77, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.78);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.product-grid-balanced .product-card {
  display: grid;
  align-self: stretch;
  min-height: 0;
  grid-template-rows: auto 1fr;
}

.product-grid-balanced .product-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--linen);
}

.product-grid-balanced .product-card-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

.product-grid-square {
  align-items: stretch;
}

.product-grid-square .product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.product-grid-balanced .product-card .btn-card-whatsapp,
.product-grid-balanced .product-card .card-link {
  align-self: end;
  margin-top: 18px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  align-self: end;
  margin-top: 18px;
}

.product-card-actions .btn-secondary,
.product-card-actions .btn-card-whatsapp {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding-right: 14px;
  padding-left: 14px;
  text-align: center;
  white-space: nowrap;
}

.product-card-body .eyebrow {
  width: fit-content;
  border: 1px solid rgba(102, 115, 77, 0.32);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(102, 115, 77, 0.08);
  font-size: 11px;
  line-height: 1;
}

.product-card-body h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
  min-height: 2.36em;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.btn[href^="https://wa.me/"],
.btn[href^="https://api.whatsapp.com/"],
.btn-whatsapp,
.btn-card-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
}

.btn[href^="https://wa.me/"]:hover,
.btn[href^="https://api.whatsapp.com/"]:hover,
.btn-whatsapp:hover,
.btn-card-whatsapp:hover {
  border-color: #1faa52;
  background: #1faa52;
  color: #fff;
}

.btn-card-whatsapp {
  width: fit-content;
}

.product-specs {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-specs strong {
  color: var(--ink);
}

.card-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border-bottom: 2px solid var(--olive);
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.card-link::after {
  content: "->";
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  transition: transform 180ms ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

.card p,
.faq-item p,
.contact-panel p,
.page-hero p {
  max-width: 68ch;
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.88);
}

.seo-faq {
  background: rgba(238, 228, 210, 0.38);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.faq-item p {
  margin: 0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--olive);
}

.process .card:nth-child(1)::before {
  content: "01";
}

.process .card:nth-child(2)::before {
  content: "02";
}

.process .card:nth-child(3)::before {
  content: "03";
}

.process .card:nth-child(4)::before {
  content: "04";
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.factory-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.78);
}

.factory-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.factory-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.factory-card p {
  margin: 0;
  max-width: 56ch;
}

.quote-band {
  padding: 64px 0;
  color: var(--white);
  background: var(--ink);
}

.quote-band p {
  color: rgba(255, 253, 248, 0.78);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.contact-panel h2 {
  color: var(--ink);
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel .eyebrow {
  color: var(--olive-dark);
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--olive-dark);
  background: rgba(238, 228, 210, 0.42);
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  border: 3px solid rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 42px rgba(20, 19, 15, 0.28), 0 0 0 8px rgba(37, 211, 102, 0.12);
  cursor: grab;
  touch-action: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 52px rgba(20, 19, 15, 0.34), 0 0 0 10px rgba(37, 211, 102, 0.16);
}

.whatsapp-float.is-dragging {
  cursor: grabbing;
  transition: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer {
  padding: 42px 0 58px;
  color: rgba(255, 253, 248, 0.7);
  background: #11100d;
}

.footer-compact {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-logo {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 38ch;
}

.footer-quick-links,
.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-quick-links a,
.footer-contact-line a {
  color: rgba(255, 253, 248, 0.86);
}

.footer-quick-links a {
  font-weight: 800;
}

.footer a {
  color: rgba(255, 253, 248, 0.82);
}

.footer h2,
.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-quote-form {
  gap: 12px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.055);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer-form-head {
  display: grid;
  gap: 4px;
}

.footer-inquiry-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-quote-form textarea {
  min-height: 88px;
}

.file-drop-zone {
  position: relative;
  display: grid;
  gap: 5px;
  justify-items: center;
  border: 1px dashed rgba(255, 253, 248, 0.42);
  border-radius: 8px;
  padding: 16px;
  color: rgba(255, 253, 248, 0.72);
  text-align: center;
  background: rgba(255, 253, 248, 0.06);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.file-drop-zone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-drop-title {
  color: var(--white);
  font-weight: 800;
}

.file-drop-text {
  font-size: 13px;
}

.file-drop-zone:hover,
.file-drop-zone:focus-within,
.file-drop-zone.is-dragging,
.file-drop-zone.has-file {
  border-color: var(--sand);
  color: var(--white);
  background: rgba(216, 198, 166, 0.13);
}

.footer-quote-form .form-actions {
  margin-top: 0;
}

.footer-form-actions .btn-email {
  flex: 1.35 1 220px;
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(255, 253, 248, 0.18);
}

.footer-form-actions .btn-email:hover {
  border-color: var(--sand);
  background: var(--sand);
}

.footer-form-actions .btn-whatsapp {
  flex: 1 1 180px;
  border-color: rgba(255, 253, 248, 0.48);
  color: var(--white);
}

.page-hero {
  padding: 98px 0 58px;
  background: var(--linen);
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 18px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.table th,
.table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--olive-dark);
  background: var(--linen);
}

.table tr:last-child td {
  border-bottom: 0;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.small {
  font-size: 13px;
}

.product-detail-hero {
  padding: 72px 0;
  background: var(--linen);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.product-detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(20, 19, 15, 0.11);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--white);
}

.product-detail-media .product-image-placeholder {
  aspect-ratio: 1 / 1;
  border-bottom: 0;
}

.product-image-placeholder-large span {
  padding: 10px 14px;
  font-size: 12px;
}

.product-detail-summary {
  display: grid;
  gap: 18px;
}

.product-detail-summary h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.product-lead {
  max-width: 64ch;
  font-size: 18px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.product-tags span {
  border: 1px solid rgba(102, 115, 77, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--olive-dark);
  background: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-detail-grid .card h2 {
  margin-bottom: 18px;
}

.source-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.source-fact {
  border: 1px solid rgba(102, 115, 77, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.72);
}

.source-fact strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.source-fact span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.source-note {
  border-left: 3px solid var(--olive);
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.product-specs-large {
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .brand {
    width: 210px;
  }

  .nav-links {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-item {
    position: static;
  }

  .nav-dropdown {
    left: 20px;
    right: 20px;
    min-width: 0;
    width: auto;
    grid-template-columns: 1fr;
    transform: translate(0, 10px);
  }

  .products-menu .nav-dropdown {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .about-menu .nav-dropdown {
    min-width: 0;
  }

  .nav-item .nav-dropdown {
    opacity: 0;
    pointer-events: none;
    transform: translate(0, 10px);
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown,
  .nav-item.is-open .nav-dropdown {
    transform: translate(0, 0);
  }

  .nav-item.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
  }

  .section-head,
  .split,
  .contact-panel,
  .faq-grid,
  .factory-grid,
  .product-detail-layout,
  .product-detail-grid,
  .product-category-directory,
  .route-grid,
  .footer-compact {
    grid-template-columns: 1fr;
  }

  .footer-inquiry-fields {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  }

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

  .grid-3,
  .grid-4,
  .grid-2,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-quote-form {
    padding: 18px;
  }

  .factory-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: auto;
    margin-right: 18px;
    margin-left: 18px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 76px 0 52px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 27px;
    line-height: 1.16;
  }

  .page-hero h1,
  .section-head h2,
  .compact-product-grid .product-card-body h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .page-hero {
    padding: 72px 0 44px;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .category-grid,
  .product-category-directory,
  .route-grid {
    grid-template-columns: 1fr;
  }
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-overview-card img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .category-overview-body {
    gap: 12px;
    padding: 22px;
  }

  .category-overview-body h2 {
    max-width: none;
    font-size: 24px;
  }

  .category-overview-body > p,
  .category-buyer-points {
    font-size: 14px;
  }

  .category-buyer-points {
    display: none;
  }

  .category-card-actions {
    display: grid;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .card,
  .faq-item {
    padding: 22px;
  }

  .grid-3 > .card,
  .grid-4 > .card,
  .grid-2 > .card {
    width: 100%;
    min-width: 0;
    contain-intrinsic-size: auto 320px;
  }

  .factory-card {
    grid-template-columns: 1fr;
  }

  .factory-card img {
    aspect-ratio: 16 / 10;
  }

  .contact-panel {
    padding: 24px;
  }

  .cta-points {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .product-card-actions,
  .product-detail-actions {
    display: grid;
  }

  .product-card-actions,
  .source-facts {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    padding: 48px 0;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Contact form: dual-channel (email + WhatsApp) actions */
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-actions .btn {
  flex: 1 1 auto;
}
[data-contact-form] .hidden {
  display: none !important;
}
[data-form-status] {
  margin-top: 10px;
}

.factory-showcase {
  padding: clamp(58px, 7vw, 92px) 0 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(102, 115, 77, 0.16), transparent 32%),
    linear-gradient(180deg, #121217 0%, #101015 56%, #16161d 100%);
  color: var(--white);
  border-top: 1px solid rgba(216, 198, 166, 0.18);
  border-bottom: 1px solid rgba(216, 198, 166, 0.18);
}

.factory-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
  padding-bottom: clamp(44px, 5.8vw, 72px);
}

.factory-copy {
  max-width: 680px;
}

.factory-showcase .eyebrow {
  color: #d7b74e;
}

.factory-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.factory-copy h2 span {
  color: #d7b74e;
}

.factory-intro {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  line-height: 1.68;
}

.factory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.factory-actions .btn-primary {
  border-color: #d7b74e;
  background: #d7b74e;
  color: #121217;
}

.factory-actions .btn-primary:hover {
  background: #c7a642;
}

.factory-actions .btn-secondary {
  border-color: rgba(216, 198, 166, 0.58);
  color: var(--sand);
  background: transparent;
}

.factory-actions .btn-secondary:hover {
  background: rgba(216, 198, 166, 0.1);
}

.factory-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 198, 166, 0.28);
  border-radius: 8px;
  background: #0c0c10;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
}

.factory-media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.factory-scale-band {
  border-top: 1px solid rgba(216, 198, 166, 0.18);
  border-bottom: 1px solid rgba(216, 198, 166, 0.18);
  background: rgba(12, 12, 17, 0.54);
}

.factory-scale-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-width: 0;
  padding: clamp(28px, 4vw, 48px) 0;
}

.factory-scale-item {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
  border-right: 1px solid rgba(216, 198, 166, 0.12);
  padding: 0 14px;
}

.factory-scale-item:last-child {
  border-right: 0;
}

.factory-scale-item strong {
  color: #d7b74e;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.factory-scale-item span {
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.factory-scale-item-accent strong {
  color: var(--white);
  font-size: clamp(30px, 3vw, 40px);
}

.factory-process-band {
  background: #1b1b24;
}

.factory-process-line {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(28px, 4vw, 46px) 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.home-category-compact {
  padding-top: clamp(54px, 7vw, 86px);
  background:
    linear-gradient(180deg, rgba(238, 228, 210, 0.82), rgba(247, 242, 232, 0.96)),
    var(--paper);
}

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

.category-tile-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(20, 19, 15, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 38px rgba(20, 19, 15, 0.07);
}

.category-tile-media {
  display: block;
  overflow: hidden;
  background: var(--linen);
}

.category-tile-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--linen);
  transition: transform 220ms ease;
}

.category-tile-card:hover .category-tile-media img,
.category-tile-media:focus-visible img {
  transform: scale(1.035);
}

.category-tile-body {
  display: grid;
  min-width: 0;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.category-badge {
  width: fit-content;
  border: 1px solid rgba(102, 115, 77, 0.25);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(102, 115, 77, 0.08);
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.category-tile-body h3 {
  overflow-wrap: anywhere;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: 0;
}

.category-tile-body > p:not(.category-badge) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.category-tile-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.category-tile-meta div {
  display: grid;
  gap: 2px;
  min-width: 0;
  border-top: 1px solid rgba(20, 19, 15, 0.1);
  padding-top: 10px;
}

.category-tile-meta span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-tile-meta strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.category-tile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  border: 1px solid rgba(102, 115, 77, 0.54);
  border-radius: 7px;
  padding: 10px 14px;
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.category-tile-link:hover {
  border-color: var(--olive-dark);
  background: rgba(102, 115, 77, 0.08);
}
.collection-entry-grid { align-items: stretch; }
.collection-hero { background: linear-gradient(90deg, rgba(20, 19, 15, 0.78), rgba(20, 19, 15, 0.5)), url("https://img.stellarisle.com/assets/img-ai/seo-assets/images/b1-yoga-set-model-taupe-standing-01.jpg") center / cover; color: var(--white); }
.collection-hero p { color: rgba(255, 255, 255, 0.88); }
.collection-product-grid .product-card-body { min-height: 260px; }
.selected-products .section-head {
  margin-bottom: 18px;
}
.selected-products {
  scroll-margin-top: 116px;
}
.selected-products .section-head h2 {
  max-width: 760px;
}
.selected-products .section-head > p {
  max-width: 560px;
}
.selected-products .collection-filter-tags {
  margin-bottom: 18px;
}
.selected-products .collection-filter-tags span {
  min-height: 24px;
  padding: 4px 9px;
  font-size: 10px;
}
.selected-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.selected-products-grid .product-card {
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 19, 15, 0.08);
}
.selected-products-grid .product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
}
.selected-products-grid .product-card-body {
  display: grid;
  min-height: 0;
  gap: 7px;
  padding: 13px;
}
.selected-products-grid .product-card-body .eyebrow {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 4px 8px;
  font-size: 9px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selected-products-grid .product-card-body h3 {
  display: -webkit-box;
  min-height: 2.44em;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.selected-products-grid .product-desc {
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.selected-product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.selected-product-meta span {
  display: grid;
  min-width: 0;
  gap: 2px;
  border: 1px solid rgba(102, 115, 77, 0.22);
  border-radius: 6px;
  padding: 7px 8px;
  background: rgba(102, 115, 77, 0.06);
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.selected-product-meta strong {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.style-code {
  display: inline-block;
  margin-right: 6px;
  border: 1px solid rgba(102, 115, 77, 0.28);
  border-radius: 999px;
  padding: 2px 7px;
  background: rgba(102, 115, 77, 0.08);
  color: var(--olive-dark);
  font-size: 0.72em;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.35;
  vertical-align: 0.1em;
}
.selected-products-grid .btn-card-whatsapp {
  width: 100%;
  min-height: 38px;
  margin-top: 2px;
  border-color: var(--olive-dark);
  padding: 9px 12px;
  background: var(--olive-dark);
  box-shadow: none;
  font-size: 13px;
  line-height: 1;
}
.selected-products-grid .btn-card-whatsapp:hover {
  border-color: var(--olive);
  background: var(--olive);
}
.compact-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.compact-product-grid .product-card {
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 19, 15, 0.08);
}
.compact-product-grid .product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
}
.compact-product-grid .product-card-body {
  display: grid;
  min-height: 0;
  gap: 7px;
  padding: 13px;
}
.compact-product-grid .product-card-body .eyebrow {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 4px 8px;
  font-size: 9px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.compact-product-grid .product-card-body h3 {
  display: -webkit-box;
  min-height: 2.44em;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.compact-product-grid .product-desc {
  display: none;
  min-height: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.compact-product-grid .btn-card-whatsapp {
  width: 100%;
  min-height: 38px;
  margin-top: 2px;
  border-color: var(--olive-dark);
  padding: 9px 12px;
  background: var(--olive-dark);
  box-shadow: none;
  font-size: 13px;
  line-height: 1;
}
.compact-product-grid .btn-card-whatsapp:hover {
  border-color: var(--olive);
  background: var(--olive);
}
.compact-product-grid .product-card[hidden] {
  display: none;
}
.product-grid-large-images {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-grid-large-images .product-card img {
  aspect-ratio: 1 / 1;
  padding: 4px;
}
.product-grid-large-images .product-card-body {
  gap: 8px;
  padding: 14px;
}
.product-grid-large-images .product-card-body h3 {
  font-size: 17px;
}
.product-title-link {
  display: inline;
  transition: color 180ms ease;
}
.product-title-link:hover {
  color: var(--olive-dark);
}
.product-detail-hero {
  padding: 54px 0 70px;
  background:
    linear-gradient(135deg, rgba(238, 228, 210, 0.86), rgba(255, 253, 248, 0.96) 48%, rgba(216, 198, 166, 0.42)),
    var(--paper);
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}
.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}
.product-breadcrumbs a {
  color: var(--olive-dark);
}
.product-breadcrumbs span {
  color: rgba(20, 19, 15, 0.38);
}
.product-detail-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 19, 15, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 28px 76px rgba(20, 19, 15, 0.12);
  cursor: zoom-in;
}
.product-media-stack {
  display: grid;
  gap: 12px;
}
.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
  will-change: transform;
}
.product-detail-media.is-zooming {
  cursor: zoom-out;
}
.product-detail-media.is-zooming img {
  transform: scale(3);
}
.product-detail-media-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: calc(100% - 56px);
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(20, 19, 15, 0.76);
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.product-detail-summary h1 {
  max-width: 720px;
  font-size: 24px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}
.product-detail-summary > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  font-size: 18px;
}
.product-core-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(20, 19, 15, 0.12);
  border-radius: 8px;
  background: rgba(20, 19, 15, 0.12);
}
.product-core-info div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 253, 248, 0.82);
}
.product-core-info span {
  display: block;
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.product-core-info strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.32;
}
.product-moq-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 30px 0 0;
  border: 1px solid rgba(20, 19, 15, 0.13);
  border-radius: 8px;
  background: rgba(20, 19, 15, 0.13);
}
.product-moq-strip div {
  min-width: 0;
  padding: 18px 16px;
  background: rgba(255, 253, 248, 0.82);
}
.product-moq-strip strong {
  display: block;
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1;
}
.product-moq-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.product-detail-spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}
.product-detail-copy {
  display: grid;
  gap: 18px;
}
.product-detail-copy p {
  font-size: 17px;
}
.product-detail-content {
  display: grid;
  gap: 46px;
}
.product-detail-section {
  display: grid;
  gap: 16px;
}
.product-detail-section h2 {
  max-width: 920px;
}
.product-detail-section > p:not(.eyebrow) {
  max-width: 920px;
  font-size: 17px;
}
.product-spec-panel {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(20, 19, 15, 0.08);
}
.product-spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.product-spec-row:last-child {
  border-bottom: 0;
}
.product-spec-row dt {
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-spec-row dd {
  margin: 0;
  color: var(--muted);
}
.product-spec-panel-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-spec-panel-wide .product-spec-row {
  grid-template-columns: minmax(130px, 0.38fr) 1fr;
}
.product-feature-grid,
.product-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.product-feature,
.product-application {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.product-feature h3,
.product-application h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.22;
}
.product-feature p,
.product-application p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.product-related-inline {
  display: grid;
  gap: 18px;
}
.product-related-inline h2 {
  font-size: clamp(26px, 3vw, 38px);
}
.product-process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(20, 19, 15, 0.12);
  background: rgba(20, 19, 15, 0.12);
  gap: 1px;
}
.product-process-step {
  display: grid;
  align-content: start;
  min-height: 180px;
  padding: 24px;
  background: var(--paper);
}
.product-process-step strong {
  color: var(--olive-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
.product-process-step h3 {
  margin-top: 14px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.2;
}
.product-process-step p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.related-product-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.related-product-card:hover {
  border-color: rgba(102, 115, 77, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(20, 19, 15, 0.1);
}
.related-product-card img {
  width: 118px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
}
.related-product-card strong {
  display: block;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.related-product-card span {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.28;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.product-gallery-thumbs button {
  overflow: hidden;
  border: 1px solid rgba(20, 19, 15, 0.14);
  border-radius: 8px;
  padding: 4px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.product-gallery-thumbs button:hover,
.product-gallery-thumbs button.is-active {
  border-color: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 19, 15, 0.1);
}
.product-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  object-fit: contain;
  background: var(--white);
}
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(20, 19, 15, 0.86);
}
.product-lightbox.is-open {
  display: grid;
}
.product-lightbox img {
  max-width: min(96vw, 1280px);
  max-height: 90vh;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}
.product-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 50%;
  background: rgba(20, 19, 15, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.product-image-zoom {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px 8px 0 0;
  padding: 0;
  background: var(--white);
  color: inherit;
  cursor: zoom-in;
  line-height: 0;
  touch-action: manipulation;
}
.product-image-zoom img {
  display: block;
  transform-origin: 50% 50%;
  transition: transform 160ms ease, filter 160ms ease;
}
.product-image-zoom.is-zoomed {
  cursor: zoom-out;
}
.product-image-zoom.is-zoomed img {
  transform: scale(3);
  filter: saturate(1.04) contrast(1.02);
}
.product-image-zoom:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}
.product-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.product-pagination-summary {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}
.product-pagination-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.product-page-button {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(102, 115, 77, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--olive-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}
.product-page-button:hover:not(:disabled),
.product-page-button[aria-current="page"] {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  color: var(--white);
}
.product-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.product-page-step {
  min-width: 72px;
}
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; display: inline-grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 999px; background: var(--olive-dark); color: var(--white); box-shadow: 0 16px 36px rgba(20, 19, 15, 0.22); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 180ms ease, transform 180ms ease, background 180ms ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--olive); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 1180px) { .selected-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 900px) { .selected-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .selected-products { scroll-margin-top: 272px; } .selected-products .section-head { margin-bottom: 18px; } .selected-products .collection-filter-tags { gap: 7px; } .selected-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .selected-products-grid .product-card img { padding: 6px; } .selected-products-grid .product-card-body { padding: 11px; } .selected-products-grid .product-card-body .eyebrow { font-size: 8px; } .selected-products-grid .product-card-body h3 { min-height: 3.66em; font-size: 14px; line-height: 1.22; -webkit-line-clamp: 3; } .selected-products-grid .product-desc { display: none; } .selected-product-meta span { padding: 6px; font-size: 10px; } .selected-products-grid .btn-card-whatsapp { min-height: 36px; padding: 9px 10px; font-size: 12px; } }
@media (max-width: 1180px) { .compact-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 900px) { .compact-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .compact-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .compact-product-grid .product-card img { padding: 6px; } .compact-product-grid .product-card-body { padding: 11px; } .compact-product-grid .product-card-body .eyebrow { font-size: 8px; } .compact-product-grid .product-card-body h3 { min-height: 3.66em; font-size: 14px; line-height: 1.22; -webkit-line-clamp: 3; } .compact-product-grid .product-desc { display: none; } .compact-product-grid .btn-card-whatsapp { min-height: 36px; padding: 9px 10px; font-size: 12px; } }
@media (max-width: 480px) { .compact-product-grid { grid-template-columns: 1fr; } .compact-product-grid .product-card-body h3 { min-height: auto; } .compact-product-grid .btn-card-whatsapp { white-space: normal; } .product-pagination-controls { width: 100%; } }
@media (max-width: 1180px) { .product-grid-large-images { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .product-grid-large-images { grid-template-columns: repeat(2, minmax(0, 1fr)); } .product-grid-large-images .product-card img { padding: 4px; } }
@media (max-width: 480px) { .product-grid-large-images { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .product-pagination { align-items: stretch; flex-direction: column; margin-top: 16px; padding-top: 14px; } .product-pagination-controls { justify-content: flex-start; } .product-page-button { min-width: 36px; min-height: 36px; padding: 7px 10px; font-size: 12px; } .product-page-step { min-width: 64px; } }
@media (max-width: 1100px) { .factory-showcase-grid { grid-template-columns: 1fr; } .factory-copy { max-width: 760px; } .factory-scale-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 26px; } .factory-scale-item:nth-child(3n) { border-right: 0; } .factory-scale-item:nth-child(n + 4) { padding-top: 26px; border-top: 1px solid rgba(216, 198, 166, 0.12); } .factory-process-line { flex-wrap: wrap; } }
@media (max-width: 900px) { .category-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .factory-showcase { padding-top: 54px; } .factory-showcase-grid { padding-bottom: 34px; } .factory-scale-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 28px 0; row-gap: 24px; } .factory-scale-item, .factory-scale-item:nth-child(3n) { border-right: 1px solid rgba(216, 198, 166, 0.12); } .factory-scale-item:nth-child(2n) { border-right: 0; } .factory-scale-item:nth-child(n + 3) { padding-top: 24px; border-top: 1px solid rgba(216, 198, 166, 0.12); } .factory-process-line { justify-content: flex-start; gap: 14px 18px; font-size: 11px; text-align: left; } .factory-process-line span { flex: 1 1 42%; } }
@media (max-width: 620px) { .category-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .category-tile-body { padding: 14px; } .category-tile-body h3 { font-size: 17px; } .category-tile-body > p:not(.category-badge) { font-size: 13px; } .category-tile-meta { grid-template-columns: 1fr; gap: 5px; } .category-tile-meta div { padding-top: 7px; } .back-to-top { right: 14px; bottom: 18px; } }
@media (max-width: 420px) { .category-tile-grid { grid-template-columns: 1fr; } }

#category-directory-title,
#signature-collections-title {
  scroll-margin-top: 110px;
}

.analytics-monitor-page {
  min-height: 100vh;
  background: #f6f5ef;
  color: var(--ink);
}
.analytics-topbar {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(20, 19, 15, 0.1);
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(246, 245, 239, 0.92);
  backdrop-filter: blur(14px);
}
.analytics-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.analytics-brand img {
  width: 132px;
  height: auto;
}
.analytics-controls {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
}
.analytics-controls button,
.analytics-token-form button {
  border: 1px solid rgba(102, 115, 77, 0.24);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--olive-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.analytics-controls button[aria-pressed="true"],
.analytics-token-form button {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  color: var(--white);
}
.analytics-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 42px) 48px;
}
.analytics-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}
.analytics-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}
.analytics-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.analytics-token-form {
  display: grid;
  gap: 8px;
}
.analytics-token-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.analytics-token-form div {
  display: flex;
  gap: 8px;
}
.analytics-token-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(20, 19, 15, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.analytics-status {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.analytics-status[data-state="ok"] {
  color: var(--olive-dark);
}
.analytics-status[data-state="error"] {
  color: #9f2c2c;
}
.analytics-status[data-state="warning"] {
  color: #8a651b;
}
.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.analytics-metric {
  position: relative;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(20, 19, 15, 0.09);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(20, 19, 15, 0.06);
}
.analytics-metric-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.analytics-metric-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}
.analytics-help {
  display: inline-grid;
  flex: 0 0 18px;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(20, 19, 15, 0.18);
  border-radius: 50%;
  padding: 0;
  background: #f7f4ee;
  color: var(--olive-dark);
  cursor: help;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.analytics-help:focus-visible {
  outline: 2px solid rgba(73, 91, 53, 0.45);
  outline-offset: 2px;
}
.analytics-help-tooltip {
  position: absolute;
  top: 38px;
  right: 10px;
  left: 10px;
  z-index: 20;
  margin: 0;
  border: 1px solid rgba(20, 19, 15, 0.12);
  border-radius: 6px;
  padding: 9px 10px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(20, 19, 15, 0.16);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease;
}
.analytics-metric:hover .analytics-help-tooltip,
.analytics-metric:focus-within .analytics-help-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.analytics-metric strong {
  font-size: 26px;
  line-height: 1;
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.analytics-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 19, 15, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 19, 15, 0.06);
}
.analytics-panel-wide {
  grid-column: 1 / -1;
}
.analytics-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(20, 19, 15, 0.08);
  padding: 14px 16px;
}
.analytics-panel-head h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}
.analytics-table-wrap {
  overflow-x: auto;
}
.analytics-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.analytics-panel th,
.analytics-panel td {
  border-bottom: 1px solid rgba(20, 19, 15, 0.07);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.analytics-panel th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}
.analytics-panel td:not(:first-child) {
  font-weight: 800;
  white-space: nowrap;
}
.analytics-path {
  display: inline-block;
  max-width: 420px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 750;
}
.analytics-empty {
  color: var(--muted);
  font-weight: 700;
}
@media (max-width: 1180px) {
  .analytics-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .analytics-topbar,
  .analytics-hero {
    align-items: stretch;
    grid-template-columns: 1fr;
  }
  .analytics-topbar {
    flex-direction: column;
  }
  .analytics-controls {
    width: 100%;
  }
  .analytics-controls button {
    flex: 1 1 0;
  }
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .analytics-shell {
    padding-top: 22px;
  }
  .analytics-brand {
    width: 100%;
    justify-content: space-between;
  }
  .analytics-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .analytics-metric {
    padding: 12px;
  }
  .analytics-metric strong {
    font-size: 22px;
  }
  .analytics-token-form div {
    flex-direction: column;
  }
}
@media (max-width: 980px) {
  .product-detail-layout,
  .product-detail-spec-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-layout {
    gap: 34px;
  }
  .product-process-strip,
  .related-product-grid,
  .product-feature-grid,
  .product-application-grid,
  .product-spec-panel-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .product-detail-hero {
    padding: 30px 0 46px;
  }
  .product-detail-layout,
  .product-detail-spec-grid {
    gap: 26px;
  }
  .product-detail-summary h1 {
    font-size: 22px;
  }
  .product-detail-summary > p:not(.eyebrow),
  .product-detail-copy p {
    font-size: 16px;
  }
  .product-moq-strip,
  .product-process-strip,
  .related-product-grid,
  .product-feature-grid,
  .product-application-grid,
  .product-spec-panel-wide {
    grid-template-columns: 1fr;
  }
  .product-moq-strip div {
    padding: 16px;
  }
  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }
  .product-core-info {
    grid-template-columns: 1fr;
  }
  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .product-process-step {
    min-height: 0;
    padding: 20px;
  }
  .related-product-card {
    grid-template-columns: 92px 1fr;
  }
  .related-product-card img {
    width: 92px;
  }
  .product-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
