:root {
  --ink: #13201f;
  --muted: #60716e;
  --line: #dfe8e4;
  --paper: #f6faf7;
  --white: #ffffff;
  --teal: #11766d;
  --teal-2: #26a290;
  --mint: #dff5e8;
  --coral: #ff7d66;
  --gold: #f5b949;
  --blue: #74b9e9;
  --green: #a8d879;
  --shadow: 0 24px 72px rgba(34, 66, 59, .14);
  --radius: 8px;
}

/* 2026-07 buyer-confidence and accessibility refinements */

.trust-disclaimer {
  margin: 18px 0 0;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #f2fbf7;
  color: #425956;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.form-privacy {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.modal-close:focus-visible,
.button:focus-visible,
.product-quote:focus-visible,
.filter:focus-visible,
.lang-button:focus-visible,
.hero-arrow:focus-visible,
.hero-dot:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f5b949;
  outline-offset: 3px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

body.is-modal-open {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: #13201f;
  color: white;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.top-bar__inner span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 185, 73, .16);
  vertical-align: middle;
}

.top-bar__inner button {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: white;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(19, 32, 31, .08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(19, 32, 31, .14);
  object-fit: cover;
}

.product-card--variant-set .product-visual {
  min-height: 190px;
  border-color: rgba(19, 32, 31, .12);
  background: #f8fbf9;
}

.product-card--variant-set .product-visual::before {
  display: none;
}

.product-card--variant-set .product-visual img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.product-card--variant-set .product-card__copy > span {
  background: #fff1dc;
  color: #9a4b08;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbf8;
}

.lang-button {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 20px rgba(19, 32, 31, .12);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.button--primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 34px rgba(17, 118, 109, .18);
}

.button--light {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button--dark {
  background: var(--ink);
  color: white;
}

.hero {
  order: 1;
  padding: 0;
  background: #f6faf7;
}

.hero-slider {
  position: relative;
  min-height: clamp(620px, 56.25vw, 900px);
  overflow: hidden;
  background: #edf6f1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 250, 247, .98) 0%, rgba(246, 250, 247, .9) 34%, rgba(246, 250, 247, .24) 62%, rgba(246, 250, 247, .08) 100%),
    linear-gradient(0deg, rgba(19, 32, 31, .14), rgba(19, 32, 31, 0) 48%);
  pointer-events: none;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 152px;
}

.hero-slide__copy {
  max-width: 670px;
}

.hero-slide__copy h1,
.hero-slide__copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-slide__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: #425956;
  font-size: 18px;
  line-height: 1.7;
}

.hero-slide__copy .hero-actions {
  position: relative;
  z-index: 2;
  margin-top: 22px;
}

.hero-slide--halloween {
  background:
    radial-gradient(circle at 18% 34%, rgba(245, 185, 73, .18), rgba(245, 185, 73, 0) 34%),
    linear-gradient(135deg, #070504 0%, #17100c 48%, #2b1510 100%);
}

.hero-slide--halloween::before {
  background:
    linear-gradient(90deg, rgba(7, 5, 4, 0) 0%, rgba(7, 5, 4, .08) 48%, rgba(7, 5, 4, .54) 76%, rgba(7, 5, 4, .76) 100%),
    linear-gradient(0deg, rgba(7, 5, 4, .38), rgba(7, 5, 4, 0) 46%);
}

.hero-slide--halloween .hero-slide__image {
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 8%;
  transform: none;
  box-shadow: none;
}

.hero-slide--halloween .hero-slide__content {
  justify-content: flex-end;
}

.hero-slide--halloween .hero-slide__copy {
  max-width: 520px;
  margin-left: auto;
  color: white;
}

.hero-slide--halloween .eyebrow {
  background: rgba(245, 185, 73, .16);
  color: #f7d276;
}

.hero-slide--halloween .hero-slide__copy h1,
.hero-slide--halloween .hero-slide__copy h2 {
  margin: 0;
  color: #fff7df;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.06;
  text-wrap: balance;
}

.hero-slide--halloween .hero-slide__copy > p:not(.eyebrow) {
  color: rgba(255, 247, 223, .82);
}

.hero-slide--halloween .button--light {
  background: rgba(255, 255, 255, .09);
  color: #fff7df;
  border-color: rgba(255, 255, 255, .22);
}

.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 104px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrows,
.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 32, 31, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 32, 31, .22);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--teal);
}

.hero-proof-strip {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(19, 32, 31, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 60px rgba(34, 66, 59, .12);
  backdrop-filter: blur(16px);
}

.hero-proof-strip div {
  min-height: 72px;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  padding: 12px 16px;
  background: rgba(247, 250, 247, .9);
}

.hero-proof-strip strong,
.hero-proof-strip span {
  display: block;
}

.hero-proof-strip strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.hero-proof-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.collection-section {
  order: 2;
  padding: 42px 0 40px;
  background: white;
}

.collection-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.collection-head h2 {
  font-size: clamp(30px, 3vw, 44px);
}

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

.collection-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--ink);
  text-align: center;
}

.collection-visual {
  width: min(148px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #f7fbf8, #fff3f0);
  box-shadow: 0 18px 42px rgba(34, 66, 59, .1);
}

.collection-visual i {
  position: relative;
  width: 82px;
  height: 68px;
  display: block;
  border-radius: 48% 48% 42% 42%;
  background: var(--toy);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, .08), 0 14px 24px rgba(34, 66, 59, .16);
}

.collection-visual i::before,
.collection-visual i::after {
  content: "";
  position: absolute;
  top: 46%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.collection-visual i::before {
  left: 34%;
}

.collection-visual i::after {
  right: 34%;
}

.collection-card strong,
.collection-card small {
  display: block;
}

.collection-card strong {
  font-size: 15px;
}

.collection-card small {
  max-width: 150px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--mint);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 1.01;
  margin-bottom: 22px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.hero-copy p,
.hero-slide__copy p,
.section-copy p,
.section-head p,
.supply-grid > div > p,
.contact-grid > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.buyer-note {
  max-width: 590px;
  margin: -10px 0 24px;
  color: #4f6762;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-row div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  font-size: 20px;
  margin-bottom: 6px;
}

.proof-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-workspace,
.quote-builder,
.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.security-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-workspace {
  position: relative;
  overflow: hidden;
}

.workspace-head {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.workspace-head strong {
  margin-left: 8px;
  font-size: 13px;
}

.workspace-head small {
  margin-left: auto;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: var(--mint);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background: #ff7868;
}

.dot--gold {
  background: var(--gold);
}

.dot--green {
  background: #50c47d;
}

.workspace-body {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 18px;
  padding: 22px;
}

.visual-viewer {
  min-height: 330px;
  border-radius: 10px;
  border: 1px solid #dceae4;
  background: linear-gradient(145deg, #f8fff9, #e7f5ef);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.visual-viewer::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 210px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
}

.squishy {
  position: relative;
  border-radius: 48% 48% 42% 42%;
  background: var(--toy, #ffb36a);
  box-shadow: inset 0 -18px 0 rgba(0, 0, 0, .08), 0 22px 34px rgba(38, 60, 55, .13);
}

.squishy::before,
.squishy::after {
  content: "";
  position: absolute;
  top: 44%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
}

.squishy::before {
  left: 38%;
}

.squishy::after {
  right: 38%;
}

.squishy--hero {
  width: 190px;
  height: 158px;
  z-index: 2;
}

.viewer-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 118, 109, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.workspace-panel,
.builder-controls {
  display: grid;
  gap: 12px;
}

.field {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
}

.field span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.chips {
  display: flex;
  gap: 7px;
}

.chip {
  flex: 1;
  border: 0;
  border-radius: 7px;
  background: #eef6f1;
  padding: 9px 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.chip.is-active {
  background: var(--teal);
  color: white;
}

.workspace-insight {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(17, 118, 109, .16);
  border-radius: var(--radius);
  padding: 13px;
  background: linear-gradient(135deg, #f7fcf8, #fffaf0);
}

.workspace-insight span,
.workspace-insight strong {
  display: block;
}

.workspace-insight span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.workspace-insight strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.trust-desk-body {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(190px, .86fr);
  gap: 16px;
  padding: 22px;
}

.trust-desk-main,
.trust-desk-side {
  min-height: 340px;
  border-radius: 10px;
}

.trust-desk-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(245, 185, 73, .14), rgba(245, 185, 73, 0) 42%),
    linear-gradient(155deg, #13201f 0%, #193331 56%, #0f1a19 100%);
  color: white;
}

.trust-desk-main::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  pointer-events: none;
}

.trust-stamp,
.trust-proof-list {
  position: relative;
  z-index: 1;
}

.trust-stamp {
  display: grid;
  gap: 12px;
  align-content: start;
}

.trust-stamp span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(169, 238, 213, .24);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, .08);
  color: #a9eed5;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-stamp strong {
  max-width: 300px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: .94;
  letter-spacing: 0;
}

.trust-proof-list {
  display: grid;
  gap: 10px;
}

.trust-proof-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(14px);
}

.trust-proof-list b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #13201f;
  font-size: 12px;
}

.trust-proof-list span {
  color: #effaf6;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.38;
}

.trust-desk-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #dfe8e4;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
}

.trust-desk-side > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-desk-side strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.trust-mini-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.trust-mini-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border-bottom: 1px solid rgba(19, 32, 31, .08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.trust-mini-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(17, 118, 109, .09);
}

.workspace-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 22px 14px;
}

.workspace-foot div,
.builder-summary div {
  background: #f7faf7;
  border-radius: var(--radius);
  padding: 14px;
}

.hero-workspace .workspace-foot div {
  border: 1px solid rgba(17, 118, 109, .1);
  background: #fbfdfb;
}

.workspace-foot strong,
.workspace-foot span,
.builder-summary strong,
.builder-summary span {
  display: block;
}

.workspace-foot span,
.builder-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
}

.workspace-actions {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 0 22px 22px;
}

.workspace-quote {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), #244340);
  color: white;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(19, 32, 31, .16);
}

.workspace-actions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-workspace .workspace-actions span {
  max-width: 330px;
}

.section {
  padding: 82px 0;
}

.buyer-assurance {
  order: 3;
  padding: 34px 0;
  background: #13201f;
  color: white;
}

.proof-section {
  order: 4;
  padding: 40px 0;
  background: #f8fbf8;
}

.proof-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-evidence-grid article {
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
}

.proof-evidence-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
}

.proof-evidence-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.proof-evidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.assurance-grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
}

.assurance-copy .eyebrow {
  background: rgba(255, 255, 255, .1);
  color: #a9eed5;
}

.assurance-copy h2 {
  max-width: 430px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.assurance-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.assurance-list article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, .055);
}

.assurance-list strong {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-size: 15px;
}

.assurance-list p {
  margin: 0;
  color: #d5e5e2;
  font-size: 13px;
  line-height: 1.6;
}

.quote-section,
.supply-section {
  background: #edf6f1;
}

.quote-section {
  order: 9;
}

.catalog-section {
  order: 5;
}

.sample-section {
  order: 6;
  background: #f8fbf8;
}

.supply-section {
  order: 8;
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(440px, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.sample-showcase {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #e8f6ef, #f9fdf9);
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.sample-lid {
  width: min(360px, 100%);
  min-height: 112px;
  margin: 0 auto;
  border: 1px solid #dbe8e2;
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 48px rgba(34, 66, 59, .12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.sample-lid span,
.sample-lid strong {
  display: block;
}

.sample-lid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.sample-lid strong {
  color: var(--ink);
  font-size: 36px;
}

.sample-toys {
  display: grid;
  grid-template-columns: repeat(3, 76px);
  justify-content: center;
  gap: 16px;
}

.sample-toys i {
  width: 76px;
  height: 62px;
  border-radius: 48% 48% 42% 42%;
  background: var(--toy);
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, .08), 0 14px 26px rgba(38, 60, 55, .12);
  position: relative;
}

.sample-toys i::before,
.sample-toys i::after {
  content: "";
  position: absolute;
  top: 42%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.sample-toys i::before {
  left: 38%;
}

.sample-toys i::after {
  right: 38%;
}

.sample-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.sample-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
}

.sample-points div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}

.sample-points strong,
.sample-points span {
  display: block;
}

.sample-points strong {
  margin-bottom: 8px;
  font-size: 14px;
}

.sample-points span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-grid,
.supply-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: 46px;
  align-items: start;
}

.builder-tabs {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.builder-tab {
  flex: 1;
  border: 0;
  border-radius: 8px;
  padding: 12px 10px;
  background: #eef6f1;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.builder-tab.is-active {
  background: var(--teal);
  color: white;
}

.builder-main {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  padding: 18px;
}

.builder-product {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, #f8fff9, #e6f5ee);
  display: grid;
  place-items: center;
  text-align: center;
}

.builder-toy {
  width: 150px;
  height: 126px;
}

.builder-product p {
  margin: -20px 0 0;
  font-weight: 900;
}

.builder-controls label,
.lead-form label {
  display: grid;
  gap: 8px;
  color: #3f524e;
  font-size: 13px;
  font-weight: 900;
}

.builder-controls select,
.builder-controls input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.builder-controls input[type="range"] {
  padding: 0;
  accent-color: var(--teal);
}

.range-value {
  color: var(--muted);
  font-size: 12px;
}

.builder-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 10px;
  padding: 0 18px 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

.section-head > div {
  max-width: 640px;
}

.section-head__side {
  display: grid;
  gap: 14px;
  justify-items: end;
}

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

.catalog-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-quick-actions .button {
  min-height: 42px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
}

.filters {
  display: grid;
  gap: 10px;
  align-content: start;
}

.filter-strip {
  display: grid;
  gap: 10px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.filter.is-active {
  background: var(--ink);
  color: white;
}

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

.product-card {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  transition: transform .18s ease, opacity .18s ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card.is-quick-open .product-card__quick {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (min-width: 681px) {
  .product-card:hover .product-card__quick,
  .product-card:focus-within .product-card__quick {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.product-card span {
  display: inline-flex;
  border-radius: 999px;
  background: #e8f5ef;
  color: var(--teal);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.product-card__copy {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 112px);
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.product-card p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.product-card dl {
  position: relative;
  z-index: 2;
  display: none;
  gap: 6px;
  margin: 0;
}

.product-card__trade {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-right: 112px;
}

.product-card__trade div {
  min-width: 0;
  border: 1px solid #edf3f0;
  border-radius: 7px;
  background: #fbfdfb;
  padding: 9px 8px;
}

.product-card__trade span,
.product-card__trade strong {
  display: block;
}

.product-card__trade span {
  margin: 0 0 5px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.product-card__trade strong {
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid #edf3f0;
  font-size: 12px;
}

.product-card dt {
  color: var(--muted);
  font-weight: 800;
}

.product-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.variant-picker {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.variant-picker--tiered {
  display: grid;
  gap: 8px;
}

.variant-picker__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 9px;
}

.variant-picker--tiered .variant-picker__head {
  margin-bottom: 0;
}

.variant-picker__head span {
  display: inline;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.variant-picker__head strong {
  min-width: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.variant-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.variant-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.variant-size {
  min-height: 24px;
  border: 1px solid rgba(19, 32, 31, .12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.variant-size.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.variant-swatch {
  width: 22px;
  height: 22px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px var(--line), inset 0 -5px 8px rgba(19, 32, 31, .12);
  cursor: pointer;
}

.variant-swatch.is-active {
  box-shadow: 0 0 0 2px var(--ink), inset 0 -5px 8px rgba(19, 32, 31, .12);
}

.variant-swatch.is-hidden,
.detail-variant.is-hidden {
  display: none;
}

.product-quote {
  position: relative;
  z-index: 3;
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: white;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.product-card__bottom {
  position: relative;
  z-index: 7;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding-top: 12px;
  border-top: 1px solid #edf3f0;
}

.product-visual {
  position: absolute;
  right: 14px;
  top: 82px;
  z-index: 1;
  width: 116px;
  height: 116px;
  border: 1px solid #edf3f0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 56%),
    #f4faf6;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: 8px;
  display: block;
}

.product-visual .squishy {
  width: 88px;
  height: 72px;
  position: absolute;
}

.product-visual--image {
  background: #f8fbf9;
}

.product-visual--placeholder {
  box-shadow: inset 0 -18px 30px rgba(19, 32, 31, .04);
}

.product-card__quick {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 58px;
  z-index: 6;
  display: grid;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  padding: 12px;
  box-shadow: 0 22px 58px rgba(19, 32, 31, .2);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.product-card__quick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__quick-head strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.product-card__quick-head span {
  margin: 0;
  padding: 4px 7px;
  background: #e8f5ef;
  color: var(--teal);
  font-size: 10px;
}

.product-card__quick-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.product-card__quick-meta div {
  min-width: 0;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: 8px;
  background: #f7faf8;
  padding: 8px;
}

.product-card__quick-meta span,
.product-card__quick-qty > span {
  display: block;
  margin: 0 0 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.product-card__quick-meta strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-card__quick-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.product-card__quick-qty > span {
  flex: 0 0 100%;
}

.quick-qty {
  min-height: 30px;
  border: 1px solid rgba(19, 32, 31, .1);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.quick-qty.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.quick-inquiry {
  min-height: 36px;
  border: 0;
  border-radius: 9px;
  background: var(--teal);
  color: white;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 118, 109, .18);
}

.mobile-quick-trigger,
.quick-close {
  display: none;
}

.supply-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dash-card {
  background: var(--ink);
  color: white;
  border-radius: 10px;
  padding: 20px;
}

.dash-card h3 {
  margin: 0 0 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px 1fr 40px;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  color: #d5e5e2;
  font-size: 13px;
  font-weight: 800;
}

.bar-row i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--w), #314746 var(--w));
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 72px 70px;
  gap: 10px;
  background: #1a2c2a;
  border-radius: var(--radius);
  padding: 11px;
  color: #d5e5e2;
  font-size: 13px;
  margin-bottom: 10px;
}

.quote-row em {
  color: var(--gold);
  font-style: normal;
}

.verification-row {
  display: grid;
  grid-template-columns: minmax(100px, .8fr) minmax(0, 1.2fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  border-radius: var(--radius);
  background: #1a2c2a;
  padding: 12px;
  color: #d5e5e2;
  font-size: 13px;
}

.verification-row b {
  color: var(--gold);
  text-align: right;
}

.trust-section {
  order: 7;
  background: #f8fbf8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
}

.trust-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 30px;
}

.trust-grid h3 {
  margin-bottom: 10px;
}

.trust-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  order: 10;
  background: #edf6f1;
}

.contact-section {
  order: 11;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(540px, 1.24fr);
  gap: 46px;
  align-items: start;
}

.faq-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0 18px;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: -4px 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.supply-checklist {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.supply-checklist li {
  position: relative;
  padding-left: 26px;
  color: #415955;
  font-weight: 800;
  line-height: 1.5;
}

.supply-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #dff5e8;
}

.lead-form {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-benefits {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-benefits div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-benefits strong {
  font-size: 14px;
}

.contact-benefits span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.full {
  grid-column: 1 / -1;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  max-width: calc(100vw - 24px);
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: linear-gradient(135deg, #139a5f, #21c26f);
  color: white;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(31, 157, 98, .34), 0 0 0 0 rgba(33, 194, 111, .26);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  border: 1px solid rgba(33, 194, 111, .2);
  pointer-events: none;
}

.floating-whatsapp__icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.floating-whatsapp__icon::before,
.floating-whatsapp__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: white;
  transform: translate(-50%, -50%);
}

.floating-whatsapp__icon::before {
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 14%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.floating-whatsapp__icon::after {
  width: 7px;
  height: 2px;
  border-radius: 999px;
  margin-top: 7px;
  margin-left: 4px;
}

.floating-whatsapp__copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.floating-whatsapp__copy strong {
  font-size: 15px;
}

.floating-whatsapp__copy small {
  font-size: 11px;
  font-weight: 800;
  opacity: .9;
}

.inquiry-tray {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 72;
  width: min(520px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 70px rgba(12, 31, 29, .2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.inquiry-tray__main,
.inquiry-tray__send {
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.inquiry-tray__main {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 9px 10px;
  background: #f5fbf7;
  color: var(--ink);
  text-align: left;
}

.inquiry-tray__main span {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 900;
}

.inquiry-tray__main strong,
.inquiry-tray__main small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inquiry-tray__main strong {
  font-size: 14px;
  font-weight: 900;
}

.inquiry-tray__main small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.inquiry-tray__send {
  min-width: 116px;
  padding: 0 16px;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(17, 118, 109, .2);
}

.product-detail-modal {
  z-index: 110;
}

.product-detail-panel {
  width: min(1180px, calc(100vw - 64px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  padding: 16px;
  background: #ffffff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
}

.product-detail-media {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto auto;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #f6faf7, #ffffff 62%),
    #ffffff;
  padding: 14px;
}

.product-detail-media > img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  background: #fbfdfb;
}

.product-detail-media > img[hidden] {
  display: none;
}

.product-detail-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(54px, 1fr);
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.product-detail-gallery__item {
  height: 54px;
  min-width: 0;
  border: 1px solid rgba(19, 32, 31, .09);
  border-radius: 9px;
  background: #ffffff;
  padding: 4px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(34, 66, 59, .06);
}

.product-detail-gallery__item.is-active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink), 0 10px 24px rgba(19, 32, 31, .12);
}

.product-detail-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 7px;
  background: #f8fbf9;
}

.product-detail-media p {
  margin: 0;
  color: #60716e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.product-detail-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 8px 42px 4px 0;
}

.product-detail-copy .eyebrow {
  margin: 0;
}

.product-detail-copy h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(24px, 2.45vw, 36px);
  line-height: 1.08;
}

.product-detail-copy > p:not(.eyebrow):not(.product-detail-note) {
  margin: 0;
  color: #405652;
  font-size: 13px;
  line-height: 1.48;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.product-detail-stats div {
  min-width: 0;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: 8px;
  background: #f7faf8;
  padding: 8px;
}

.product-detail-stats span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-detail-stats strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

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

.product-detail-extra div {
  min-width: 0;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(17, 118, 109, .14);
  border-radius: 8px;
  background: #f2fbf7;
  padding: 8px;
}

.product-detail-extra span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-detail-extra strong {
  color: #344a46;
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.product-detail-variants {
  display: grid;
  gap: 9px;
}

.product-detail-variants > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-detail-variants > span strong {
  color: var(--ink);
  font-weight: 950;
}

.product-detail-variants > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-size {
  min-height: 34px;
  border: 1px solid rgba(19, 32, 31, .1);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.detail-size.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.detail-variant {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(19, 32, 31, .1);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 12px 0 8px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.detail-variant::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(19, 32, 31, .14), inset 0 -5px 8px rgba(19, 32, 31, .12);
}

.detail-variant.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  margin-top: 0;
}

.product-detail-actions .button {
  min-height: 40px;
  padding: 0 12px;
}

.product-detail-note {
  margin: 0;
  border-left: 3px solid var(--gold);
  background: #fffaf0;
  color: #6c5a35;
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 44px rgba(31, 157, 98, .34), 0 0 0 0 rgba(33, 194, 111, .22);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(31, 157, 98, .4), 0 0 0 10px rgba(33, 194, 111, 0);
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 18, .58);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f5fbf7);
  box-shadow: 0 34px 100px rgba(8, 20, 18, .34);
  padding: 28px;
}

.modal-panel.product-detail-panel {
  width: min(1180px, calc(100vw - 64px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  padding: 16px;
}

.product-detail-panel .modal-close {
  right: 14px;
  top: 14px;
  z-index: 8;
  width: 34px;
  height: 34px;
  font-size: 20px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-head {
  max-width: 690px;
  padding-right: 48px;
}

.modal-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
}

.modal-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.modal-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 16px;
  margin-top: 22px;
}

.modal-side {
  display: grid;
  gap: 12px;
}

.modal-summary,
.modal-message,
.modal-options {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
}

.modal-summary h3 {
  margin-bottom: 16px;
}

.modal-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.modal-summary dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #edf3f0;
}

.modal-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.modal-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.modal-message {
  display: grid;
  gap: 10px;
}

.modal-message span,
.modal-options label span {
  color: #3f524e;
  font-size: 13px;
  font-weight: 900;
}

.modal-options {
  display: grid;
  gap: 12px;
}

.modal-options h3 {
  margin-bottom: 2px;
}

.modal-options label {
  display: grid;
  gap: 7px;
}

.modal-options input,
.modal-options select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.modal-message textarea {
  width: 100%;
  min-height: 190px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  padding: 14px;
  line-height: 1.6;
  outline: none;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.modal-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.site-footer {
  background: var(--ink);
  color: white;
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) .7fr .7fr;
  gap: 40px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-brand small,
.site-footer p,
.site-footer a,
.site-footer button {
  color: #c8dad7;
}

.site-footer p {
  max-width: 520px;
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 15px;
}

.site-footer a,
.site-footer button {
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px;
  }

  .nav-cta {
    display: none;
  }

  .nav {
    gap: 12px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(246, 250, 247, .98) 0%, rgba(246, 250, 247, .88) 48%, rgba(246, 250, 247, .22) 100%),
      linear-gradient(0deg, rgba(19, 32, 31, .18), rgba(19, 32, 31, 0) 48%);
  }

  .hero-slide__content {
    padding-top: 72px;
    padding-bottom: 170px;
  }

  .hero-proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slide--halloween .hero-slide__image {
    width: 100%;
    left: 0;
    object-position: center;
  }

  .hero-slide--halloween .hero-slide__copy {
    max-width: 360px;
  }

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

  .hero-grid,
  .quote-grid,
  .sample-grid,
  .supply-grid,
  .contact-grid,
  .assurance-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-workspace {
    max-width: 720px;
  }

  .trust-desk-body {
    grid-template-columns: 1fr;
  }

  .trust-desk-main,
  .trust-desk-side {
    min-height: auto;
  }

  .trust-desk-side {
    display: grid;
  }

  .trust-mini-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

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

  .filter-strip {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .assurance-list {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .proof-evidence-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 88px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .top-bar__inner {
    min-height: auto;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    font-size: 12px;
  }

  .top-bar__inner button {
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero,
  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 0;
  }

  .hero-slider {
    min-height: 590px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(246, 250, 247, .96) 0%, rgba(246, 250, 247, .88) 44%, rgba(246, 250, 247, .38) 74%, rgba(19, 32, 31, .12) 100%);
  }

  .hero-slide__image {
    object-position: 58% 100%;
  }

  .hero-slide__content {
    align-items: start;
    min-height: 470px;
    padding-top: 34px;
    padding-bottom: 202px;
  }

  .hero-slide__copy {
    max-width: 100%;
  }

  h1 {
    font-size: 44px;
  }

  .hero-slide__copy h1 {
    font-size: 33px;
    line-height: 1.04;
    max-width: 360px;
  }

  .hero-slide__copy > p:not(.eyebrow) {
    max-width: 350px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-slide__copy .hero-actions {
    display: grid;
    margin: 20px 0 0;
  }

  .hero-slide--halloween::before {
    background:
      linear-gradient(180deg, rgba(7, 5, 4, 0) 0%, rgba(7, 5, 4, .08) 40%, rgba(7, 5, 4, .88) 72%, rgba(7, 5, 4, .96) 100%);
  }

  .hero-slide--halloween .hero-slide__image {
    width: 100%;
    height: 292px;
    inset: 0 0 auto;
    border-radius: 0;
    object-fit: cover;
    object-position: 18% top;
    background: #070504;
  }

  .hero-slide--halloween .hero-slide__content {
    align-items: end;
    padding-top: 250px;
    padding-bottom: 128px;
  }

  .hero-slide--halloween .hero-slide__copy {
    max-width: none;
    padding: 12px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-slide--halloween .hero-slide__copy h1 {
    max-width: none;
    font-size: 24px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
  }

  .hero-slide--halloween .hero-slide__copy > p:not(.eyebrow) {
    max-width: none;
    line-height: 1.45;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
  }

  .hero-slide--halloween .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 10px 0 0;
  }

  .hero-slide--halloween .hero-actions .button--light {
    display: none;
  }

  .hero-slide--halloween .hero-actions .button {
    min-height: 42px;
  }

  .hero-carousel-controls {
    bottom: 92px;
    align-items: center;
  }

  .hero-arrows {
    display: none;
  }

  .hero-dots {
    width: 100%;
    justify-content: center;
  }

  .hero-proof-strip {
    display: none;
  }

  .collection-section {
    padding: 38px 0 30px;
  }

  .collection-head {
    margin-bottom: 18px;
    text-align: left;
  }

  .collection-head h2 {
    font-size: 28px;
  }

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

  .collection-visual {
    width: 126px;
  }

  .collection-visual i {
    width: 72px;
    height: 60px;
  }

  .brand small {
    display: none;
  }

  .language-switcher {
    padding: 3px;
  }

  .lang-button {
    min-width: 36px;
    min-height: 30px;
    padding: 0 7px;
    font-size: 11px;
  }

  .proof-row,
  .assurance-list,
  .sample-points,
  .workspace-body,
  .trust-desk-body,
  .trust-mini-list,
  .workspace-foot,
  .workspace-actions,
  .builder-main,
  .builder-summary,
  .catalog-grid,
  .supply-dashboard,
  .lead-form,
  .filters {
    grid-template-columns: 1fr;
  }

  .trust-desk-body {
    padding: 16px;
    gap: 12px;
  }

  .trust-desk-main {
    gap: 22px;
    padding: 18px;
  }

  .trust-stamp strong {
    font-size: 40px;
  }

  .trust-proof-list div {
    min-height: 54px;
  }

  .trust-desk-side {
    padding: 16px;
  }

  .workspace-foot {
    padding: 0 16px 12px;
  }

  .workspace-actions {
    padding: 0 16px 18px;
  }

  .workspace-quote {
    width: 100%;
  }

  .hero-workspace .workspace-actions span {
    max-width: none;
    font-size: 11px;
  }

  .trust-grid,
  .proof-evidence-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-section {
    padding: 30px 0;
  }

  .proof-evidence-grid article {
    min-height: auto;
  }

  .sample-showcase {
    min-height: 350px;
    padding: 22px;
  }

  .sample-toys {
    grid-template-columns: repeat(3, 62px);
    gap: 12px;
  }

  .sample-toys i {
    width: 62px;
    height: 52px;
  }

  .sample-actions {
    display: grid;
  }

  .section-head {
    display: block;
  }

  .section-head__side {
    justify-items: stretch;
    margin-top: 14px;
  }

  .catalog-quick-actions {
    display: grid;
    justify-content: stretch;
  }

  .modal {
    align-items: end;
    padding: 12px;
  }

  .modal-panel {
    max-height: calc(100vh - 24px);
    padding: 22px 16px 16px;
    border-radius: 14px;
  }

  .modal-head {
    padding-right: 40px;
  }

  .modal-head h2 {
    font-size: 28px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-message textarea {
    min-height: 150px;
  }

  .modal-summary dl div {
    grid-template-columns: 86px 1fr;
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -16px;
    padding: 14px 16px 16px;
    background: #f5fbf7;
  }

  .modal-note {
    text-align: left;
  }

  .buyer-assurance {
    padding: 42px 0;
  }

  .product-card {
    min-height: 430px;
  }

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

  .product-card__trade div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .product-card__trade span,
  .product-card__trade strong {
    margin: 0;
  }

  .floating-whatsapp {
    left: auto;
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 8px 12px 8px 10px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(31, 157, 98, .28), 0 0 0 0 rgba(33, 194, 111, .18);
  }

  .floating-whatsapp__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .floating-whatsapp__copy strong {
    font-size: 13px;
  }

  .floating-whatsapp__copy small {
    font-size: 9px;
  }
}

/* Premium B2B visual polish */
body {
  background:
    linear-gradient(180deg, #f7faf8 0%, #ffffff 36%, #eef7f2 100%);
}

.site-header {
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 34px rgba(19, 32, 31, .06);
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover,
.product-quote:hover,
.workspace-quote:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #0f8c7f, #0d6f68);
  box-shadow: 0 18px 38px rgba(17, 118, 109, .2);
}

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

.buyer-assurance {
  order: 2;
  padding: 54px 0;
  background:
    linear-gradient(135deg, rgba(245, 185, 73, .1), rgba(245, 185, 73, 0) 34%),
    linear-gradient(160deg, #10201f 0%, #132927 56%, #0c1716 100%);
}

.proof-section {
  order: 3;
  background: #ffffff;
}

.collection-section {
  order: 4;
  padding: 62px 0 54px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

.catalog-section {
  background: #f8fbf9;
}

.assurance-list article,
.trust-grid article,
.proof-evidence-grid article,
.sample-points div,
.filter,
.product-card,
.quote-builder,
.lead-form {
  box-shadow: 0 16px 42px rgba(34, 66, 59, .07);
}

.assurance-list article {
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045));
  backdrop-filter: blur(14px);
}

.assurance-list strong::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--gold);
}

.proof-evidence-grid {
  gap: 16px;
}

.proof-evidence-grid article {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-color: rgba(19, 32, 31, .08);
}

.proof-evidence-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.proof-evidence-grid span {
  background: #f0faf5;
  box-shadow: inset 0 0 0 1px rgba(17, 118, 109, .08);
}

.collection-head {
  margin-bottom: 34px;
}

.collection-grid {
  gap: 14px;
}

.collection-card {
  min-height: 152px;
  justify-items: start;
  align-content: space-between;
  gap: 14px;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82));
  padding: 16px;
  text-align: left;
  box-shadow: 0 18px 46px rgba(34, 66, 59, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 118, 109, .22);
  box-shadow: 0 24px 60px rgba(34, 66, 59, .12);
}

.collection-visual {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .62)),
    var(--toy);
  box-shadow: inset 0 -10px 20px rgba(19, 32, 31, .06);
}

.collection-visual i {
  width: 24px;
  height: 20px;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .08);
}

.collection-card strong {
  font-size: 16px;
}

.collection-card small {
  max-width: 180px;
}

.section-head {
  margin-bottom: 32px;
}

.catalog-layout {
  gap: 22px;
}

.filters {
  position: sticky;
  top: 112px;
}

.catalog-search {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(34, 66, 59, .06);
}

.catalog-search label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.catalog-search__field {
  position: relative;
}

.catalog-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(19, 32, 31, .1);
  border-radius: 8px;
  background: #f8fbf9;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  padding: 0 40px 0 12px;
}

.catalog-search input:focus {
  border-color: rgba(17, 118, 109, .42);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17, 118, 109, .1);
}

.catalog-search__clear {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: #e8f5ef;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.catalog-search__clear[hidden] {
  display: none;
}

.catalog-search small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.filter {
  border-color: rgba(19, 32, 31, .08);
  background: rgba(255, 255, 255, .92);
}

.filter.is-active {
  background:
    linear-gradient(135deg, #10201f, #1d3b38);
}

.catalog-grid {
  gap: 18px;
}

.product-card {
  min-height: 0;
  gap: 13px;
  border-color: rgba(19, 32, 31, .08);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  padding: 14px;
  grid-template-rows: auto auto auto auto;
}

.product-card:hover {
  box-shadow: 0 26px 62px rgba(34, 66, 59, .13);
}

  .product-visual {
    position: relative;
    order: -1;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 46%),
      linear-gradient(180deg, #f2f8f5, #e8f3ee);
  }

  .product-card--variant-set .product-visual {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

.product-visual::before {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 18px;
  border-radius: 50%;
  background: rgba(19, 32, 31, .08);
  filter: blur(8px);
}

.product-visual .squishy {
  width: 110px;
  height: 90px;
  position: relative;
  z-index: 1;
}

.product-card__copy {
  max-width: none;
}

.product-card span {
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 19px;
}

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

.product-card__trade div {
  background: #f7faf8;
}

.product-card__bottom {
  gap: 10px;
}

.variant-swatch {
  width: 24px;
  height: 24px;
}

.product-quote {
  min-height: 38px;
  background: linear-gradient(135deg, #10201f, #1c3936);
}

.sample-showcase,
.quote-builder,
.lead-form {
  border-color: rgba(19, 32, 31, .08);
}

.sample-showcase {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #e7f6ef, #fbfdf9);
}

.quote-section,
.supply-section {
  background:
    linear-gradient(180deg, #edf7f2 0%, #f7fbf8 100%);
}

.dash-card {
  background:
    linear-gradient(145deg, #10201f, #1a3330);
  box-shadow: 0 22px 54px rgba(19, 32, 31, .14);
}

.trust-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.trust-grid article {
  position: relative;
  overflow: hidden;
  border-color: rgba(19, 32, 31, .08);
}

.trust-grid article::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
  opacity: .28;
}

.contact-section {
  background: #ffffff;
}

.floating-whatsapp {
  box-shadow: 0 18px 46px rgba(18, 184, 112, .28);
}

.catalog-pagination {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84));
  padding: 14px 16px;
  box-shadow: 0 16px 42px rgba(34, 66, 59, .07);
}

.catalog-pagination p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.catalog-pagination__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-pagination__actions .button {
  min-height: 42px;
}

@media (max-width: 980px) {
  .buyer-assurance {
    padding: 46px 0;
  }

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

  .filters {
    position: static;
  }

  .catalog-search {
    grid-column: 1 / -1;
  }

  .catalog-pagination {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .buyer-assurance {
    padding: 40px 0;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 112px;
    grid-template-columns: 48px 1fr;
    align-items: center;
    align-content: center;
  }

  .collection-card small,
  .collection-card strong {
    grid-column: 2;
  }

  .collection-visual {
    grid-row: 1 / span 2;
  }

  .product-card {
    min-height: 0;
  }

  .product-visual {
    height: 142px;
  }

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

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

  .catalog-pagination {
    display: grid;
    gap: 12px;
    text-align: center;
  }

  .catalog-pagination__actions {
    display: grid;
    justify-content: stretch;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .catalog-section .section-head {
    margin-bottom: 20px;
  }

  .catalog-section .section-head h2 {
    font-size: 31px;
    line-height: 1.06;
  }

  .catalog-layout {
    gap: 12px;
  }

  .filters {
    display: grid;
    gap: 8px;
  }

  .catalog-search {
    padding: 10px;
    gap: 6px;
    border-radius: 10px;
  }

  .catalog-search label {
    font-size: 11px;
  }

  .catalog-search input {
    min-height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }

  .catalog-search small {
    display: none;
  }

  .filter-strip {
    position: sticky;
    top: 70px;
    z-index: 10;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 -12px;
    padding: 8px 12px 10px;
    background: rgba(246, 250, 247, .94);
    border-top: 1px solid rgba(19, 32, 31, .06);
    border-bottom: 1px solid rgba(19, 32, 31, .06);
    backdrop-filter: blur(14px);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .filter-strip::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    min-height: 38px;
    gap: 9px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .filter span:last-child {
    min-width: 22px;
    text-align: right;
  }

  .catalog-grid {
    gap: 10px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    grid-template-areas:
      "visual copy"
      "visual trade"
      "quick quick"
      "bottom bottom";
    gap: 8px 10px;
    min-height: 0;
    padding: 10px;
    border-radius: 10px;
    align-items: start;
  }

  .product-visual {
    grid-area: visual;
    width: 100%;
    height: 116px;
    min-height: 0;
    border-radius: 8px;
  }

  .product-visual img {
    object-fit: contain;
    padding: 6px;
  }

  .product-visual::before {
    display: none;
  }

  .product-visual .squishy {
    width: 72px;
    height: 58px;
  }

  .product-card__copy {
    grid-area: copy;
    min-width: 0;
  }

  .product-card__copy > span {
    max-width: 100%;
    margin-bottom: 6px;
    padding: 4px 7px;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-card h3 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.18;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.36;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-card__trade {
    grid-area: trade;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .product-card__trade div {
    display: block;
    min-height: 42px;
    padding: 6px 5px;
    border-radius: 7px;
  }

  .product-card__trade span {
    margin: 0 0 3px;
    font-size: 9px;
  }

  .product-card__trade strong {
    font-size: 10px;
    line-height: 1.15;
  }

  .product-card dl {
    display: none;
  }

  .product-card__bottom {
    grid-area: bottom;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .variant-picker__head {
    display: none;
  }

  .variant-swatches {
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .variant-swatches::-webkit-scrollbar {
    display: none;
  }

  .product-quote {
    min-height: 36px;
    border-radius: 8px;
    font-size: 12px;
  }

  .catalog-pagination {
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-align: left;
  }

  .catalog-pagination p {
    font-size: 12px;
  }

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

  .catalog-pagination__actions .button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  #catalogCollapse {
    grid-column: 1 / -1;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(18, 144, 88, .3);
  }

  .floating-whatsapp__copy {
    display: none;
  }
}

@media (max-width: 680px) {
  .catalog-section {
    background: #f3f7f6;
  }

  .catalog-section .container {
    width: min(100% - 20px, 1200px);
  }

  .catalog-section .section-head {
    margin-bottom: 14px;
  }

  .catalog-section .section-head h2 {
    max-width: 340px;
    font-size: 28px;
    line-height: 1.08;
  }

  .catalog-section .section-head__side p {
    font-size: 13px;
    line-height: 1.62;
  }

  .catalog-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .catalog-quick-actions .button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .catalog-layout {
    gap: 10px;
  }

  .filters {
    position: sticky;
    top: 72px;
    z-index: 30;
    display: grid;
    gap: 8px;
    margin: 0 -10px;
    padding: 8px 10px 9px;
    border-top: 1px solid rgba(19, 32, 31, .06);
    border-bottom: 1px solid rgba(19, 32, 31, .06);
    background: rgba(243, 247, 246, .96);
    box-shadow: 0 10px 26px rgba(19, 32, 31, .08);
    backdrop-filter: blur(14px);
  }

  .catalog-search {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-search label,
  .catalog-search small {
    display: none;
  }

  .catalog-search input {
    min-height: 38px;
    border-color: rgba(19, 32, 31, .08);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(19, 32, 31, .02);
    font-size: 13px;
    padding-left: 14px;
  }

  .filter-strip {
    position: static;
    z-index: auto;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    margin: 0 -10px;
    padding: 0 10px 1px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .filter {
    min-height: 32px;
    border-color: rgba(19, 32, 31, .08);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(34, 66, 59, .06);
    font-size: 12px;
    gap: 7px;
    padding: 0 10px;
  }

  .filter.is-active {
    background: #10201f;
    color: #ffffff;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .product-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-areas:
      "visual copy"
      "visual trade"
      "bottom bottom";
    gap: 10px;
    min-height: 0;
    padding: 10px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(34, 66, 59, .07);
  }

  .product-card:hover {
    transform: none;
  }

  .product-visual {
    grid-area: visual;
    width: 100%;
    height: auto;
    min-height: 132px;
    aspect-ratio: 1 / 1;
    border-radius: 9px;
  }

  .product-visual img {
    object-fit: contain;
    padding: 7px;
  }

  .product-visual--generated img {
    object-fit: contain;
    padding: 6px;
  }

  .product-card__copy {
    grid-area: copy;
  }

  .product-card__copy > span {
    max-width: 100%;
    margin-bottom: 5px;
    padding: 3px 6px;
    font-size: 10px;
    line-height: 1.1;
  }

  .product-card h3 {
    min-height: auto;
    margin: 0;
    font-size: 16px;
    line-height: 1.22;
    -webkit-line-clamp: 3;
  }

  .product-card p {
    min-height: auto;
    margin: 2px 0 0;
    color: #64716e;
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .product-card__trade {
    grid-area: trade;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .product-card__trade div {
    min-height: 38px;
    padding: 6px;
    border-radius: 7px;
    background: #f7faf8;
  }

  .product-card__trade div:nth-child(3) {
    display: none;
  }

  .product-card__trade span {
    font-size: 9px;
  }

  .product-card__trade strong {
    font-size: 10px;
    line-height: 1.16;
  }

  .product-card__bottom {
    grid-area: bottom;
    gap: 8px;
  }

  .variant-swatches {
    gap: 5px;
  }

  .variant-swatch {
    width: 20px;
    height: 20px;
  }

  .product-quote {
    min-height: 34px;
    border-radius: 7px;
    font-size: 11px;
  }

  .catalog-pagination {
    margin-top: 2px;
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
  }

  .catalog-pagination__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .product-detail-panel {
    width: min(720px, 100%);
  }

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

  .product-detail-media {
    min-height: 320px;
    grid-template-rows: minmax(240px, 1fr) auto;
  }

  .product-detail-copy {
    padding: 4px 2px 2px;
  }

  .product-detail-copy h2 {
    max-width: calc(100% - 42px);
  }
}

@media (max-width: 680px) {
  .product-card__quick {
    position: static;
    grid-area: quick;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .product-card__quick-head,
  .product-card__quick-meta {
    display: none;
  }

  .product-card__quick-qty {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .product-card__quick-qty > span {
    display: none;
  }

  .quick-qty {
    min-height: 28px;
    padding: 0 4px;
    font-size: 10px;
  }

  .quick-inquiry {
    min-height: 32px;
    border-radius: 7px;
    font-size: 11px;
  }

  body {
    padding-bottom: 96px;
  }

  .inquiry-tray {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 8px;
    padding: 7px;
    border-radius: 12px;
    transform: none;
  }

  .inquiry-tray__main {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 8px;
    padding: 7px 8px;
    border-radius: 9px;
  }

  .inquiry-tray__main span {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .inquiry-tray__main strong {
    font-size: 13px;
  }

  .inquiry-tray__main small {
    font-size: 10px;
  }

  .inquiry-tray__send {
    min-width: 0;
    padding: 0 8px;
    border-radius: 9px;
    font-size: 12px;
  }

  .product-detail-modal {
    align-items: end;
    padding: 10px;
  }

  .product-detail-panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 10px;
    border-radius: 16px 16px 12px 12px;
  }

  .product-detail-panel .modal-close {
    right: 14px;
    top: 14px;
    z-index: 3;
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .product-detail-grid {
    gap: 12px;
  }

  .product-detail-media {
    min-height: 0;
    grid-template-rows: auto auto;
    gap: 8px;
    padding: 10px;
    border-radius: 11px;
  }

  .product-detail-media > img {
    height: auto;
    max-height: none;
    aspect-ratio: 1 / .82;
    object-fit: contain;
  }

  .product-detail-media p {
    font-size: 10px;
  }

  .product-detail-copy {
    gap: 10px;
    padding: 0 2px 2px;
  }

  .product-detail-copy h2 {
    max-width: calc(100% - 42px);
    font-size: 24px;
    line-height: 1.12;
  }

  .product-detail-copy > p:not(.eyebrow):not(.product-detail-note) {
    font-size: 13px;
    line-height: 1.55;
  }

  .product-detail-stats {
    gap: 7px;
  }

  .product-detail-stats div {
    min-height: 62px;
    padding: 9px;
    border-radius: 9px;
  }

  .product-detail-stats span {
    font-size: 9px;
  }

  .product-detail-stats strong {
    font-size: 12px;
  }

  .product-detail-variants > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .product-detail-variants > div::-webkit-scrollbar {
    display: none;
  }

  .detail-variant {
    flex: 0 0 auto;
    min-height: 34px;
    padding-right: 10px;
    font-size: 11px;
  }

  .product-detail-actions {
    position: sticky;
    bottom: -2px;
    z-index: 2;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 -10px -10px;
    padding: 10px;
    border-top: 1px solid rgba(19, 32, 31, .08);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
  }

  .product-detail-actions .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  .product-detail-note {
    font-size: 11px;
  }

  #inquiryModal .modal-actions {
    position: sticky;
    bottom: -16px;
    z-index: 3;
    box-shadow: 0 -12px 26px rgba(34, 66, 59, .08);
  }
}

.catalog-sort {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: 10px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(34, 66, 59, .06);
}

.catalog-sort label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.catalog-sort select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(19, 32, 31, .1);
  border-radius: 8px;
  background: #f8fbf9;
  color: var(--ink);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
  outline: none;
}

.product-detail-proof {
  border: 1px solid rgba(17, 118, 109, .16);
  border-radius: 8px;
  background: #f2fbf7;
  padding: 8px 9px;
}

.product-detail-proof strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
}

.product-detail-proof ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-proof li {
  position: relative;
  padding-left: 13px;
  color: #405652;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.product-detail-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

@media (min-width: 981px) {
  .modal {
    padding: 16px;
  }

  .modal-panel.product-detail-panel {
    width: min(1248px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    padding: 12px;
    overflow: hidden;
  }

  .product-detail-grid {
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
    gap: 14px;
  }

  .product-detail-media {
    gap: 7px;
    padding: 12px;
    border-radius: 10px;
  }

  .product-detail-gallery {
    grid-auto-columns: minmax(46px, 1fr);
    gap: 5px;
  }

  .product-detail-gallery__item {
    height: 48px;
    padding: 3px;
    border-radius: 8px;
  }

  .product-detail-media p {
    font-size: 10px;
    line-height: 1.2;
  }

  .product-detail-copy {
    gap: 7px;
    padding: 4px 42px 0 0;
  }

  .product-detail-copy .eyebrow {
    min-height: 26px;
    padding: 0 10px;
    font-size: 11px;
  }

  .product-detail-copy h2 {
    font-size: clamp(22px, 2.05vw, 34px);
    line-height: 1.12;
    padding-bottom: 2px;
  }

  .product-detail-copy > p:not(.eyebrow):not(.product-detail-note) {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .product-detail-stats {
    gap: 6px;
  }

  .product-detail-stats div {
    min-height: 50px;
    padding: 6px;
  }

  .product-detail-stats span {
    font-size: 8px;
  }

  .product-detail-stats strong {
    font-size: 11.5px;
    line-height: 1.18;
  }

  .product-detail-extra {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .product-detail-extra div {
    gap: 3px;
    padding: 6px;
  }

  .product-detail-extra span {
    font-size: 8px;
  }

  .product-detail-extra strong {
    font-size: 9.6px;
    line-height: 1.16;
  }

  .product-detail-proof {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 4px 12px;
    padding: 6px 8px;
  }

  .product-detail-proof strong {
    margin: 0;
    font-size: 9.5px;
    white-space: nowrap;
  }

  .product-detail-proof ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 10px;
  }

  .product-detail-proof li {
    padding-left: 10px;
    font-size: 9.2px;
    line-height: 1.18;
  }

  .product-detail-proof li::before {
    top: .48em;
    width: 4px;
    height: 4px;
  }

  .product-detail-variants {
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 5px 8px;
  }

  .product-detail-variants > span {
    font-size: 11px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .product-detail-variants > div {
    min-width: 0;
    gap: 5px;
  }

  .detail-size {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10.5px;
  }

  .detail-variant {
    min-height: 30px;
    gap: 6px;
    padding: 0 10px 0 7px;
    font-size: 10.8px;
  }

  .detail-variant::before {
    width: 14px;
    height: 14px;
  }

  .product-detail-actions .button {
    min-height: 36px;
    font-size: 12px;
  }

  .product-detail-note {
    padding: 5px 8px;
    font-size: 9.5px;
    line-height: 1.18;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .modal-panel.product-detail-panel {
    max-height: calc(100vh - 24px);
    padding: 10px;
  }

  .product-detail-grid {
    gap: 12px;
  }

  .product-detail-media {
    grid-template-rows: minmax(220px, 1fr) auto auto;
    gap: 6px;
    padding: 10px;
  }

  .product-detail-media > img {
    max-height: 300px;
  }

  .product-detail-gallery__item {
    height: 42px;
  }

  .product-detail-copy {
    gap: 5px;
  }

  .product-detail-copy .eyebrow {
    min-height: 23px;
    font-size: 10px;
  }

  .product-detail-copy h2 {
    font-size: clamp(21px, 1.85vw, 29px);
    line-height: 1.1;
  }

  .product-detail-copy > p:not(.eyebrow):not(.product-detail-note) {
    font-size: 12px;
    line-height: 1.3;
  }

  .product-detail-stats div,
  .product-detail-extra div {
    padding: 5px;
  }

  .product-detail-stats div {
    min-height: 46px;
  }

  .product-detail-extra {
    gap: 5px;
  }

  .product-detail-extra strong {
    font-size: 9.2px;
    line-height: 1.1;
  }

  .product-detail-proof {
    padding: 5px 7px;
  }

  .product-detail-proof li {
    font-size: 8.8px;
    line-height: 1.12;
  }

  .detail-size {
    min-height: 26px;
  }

  .detail-variant {
    min-height: 28px;
  }

  .product-detail-actions .button {
    min-height: 34px;
  }
}

@media (max-width: 680px) {
  .catalog-sort {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(34, 66, 59, .06);
  }

  .catalog-sort label {
    white-space: nowrap;
    font-size: 10px;
  }

  .catalog-sort select {
    min-height: 32px;
    border-radius: 999px;
    font-size: 12px;
  }

  .product-detail-proof {
    padding: 10px;
  }

  .product-detail-proof li {
    font-size: 11px;
  }
}

@media (max-width: 680px) {
  body.is-quick-sheet-open {
    overflow: hidden;
  }

  body.is-quick-sheet-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 112;
    background: rgba(8, 20, 18, .5);
    backdrop-filter: blur(8px);
  }

  .product-card {
    gap: 6px;
  }

  .product-card__quick {
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  .product-card.is-quick-open .product-card__quick {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 122;
    display: grid;
    gap: 10px;
    border-radius: 16px;
    padding: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 24px 80px rgba(8, 20, 18, .32);
  }

  .product-card.is-quick-open .product-card__quick-head {
    display: flex;
  }

  .product-card.is-quick-open .product-card__quick-meta {
    display: grid;
  }

  .quick-close {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(19, 32, 31, .1);
    border-radius: 50%;
    background: white;
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
  }

  .product-card.is-quick-open .product-card__quick-qty {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card.is-quick-open .product-card__quick-qty > span {
    display: block;
    grid-column: 1 / -1;
  }

  .product-card.is-quick-open .quick-inquiry {
    min-height: 42px;
    border-radius: 10px;
    font-size: 13px;
  }

  .product-card__bottom {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding-top: 6px;
  }

  .variant-picker {
    display: none;
  }

  .variant-picker--tiered {
    display: grid;
    grid-column: 1 / -1;
  }

  .mobile-quick-trigger {
    position: relative;
    z-index: 3;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 7px;
    background: var(--teal);
    color: white;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
  }

  .product-quote {
    min-height: 34px;
  }
}

.catalog-filter-open {
  display: none;
}

.catalog-filter-sheet {
  display: grid;
  gap: 10px;
}

.catalog-filter-sheet__head {
  display: none;
}

.product-card__quick-product {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(19, 32, 31, .08);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5faf7);
  padding: 8px;
}

.quick-product__image {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f8faf7;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.quick-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  display: block;
}

.quick-product__placeholder {
  width: 32px;
  height: 26px;
  border-radius: 45% 45% 40% 40%;
  background: var(--toy, #ffb36a);
  box-shadow: inset 0 -8px 14px rgba(19, 32, 31, .12), 0 8px 18px rgba(19, 32, 31, .1);
}

.product-card__quick-product strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.22;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__quick-product span {
  display: inline-flex;
  margin: 5px 0 0;
  padding: 3px 6px;
  border-radius: 999px;
  background: #fff2d7;
  color: #8a5500;
  font-size: 10px;
  font-weight: 900;
}

@media (max-width: 680px) {
  body.is-filter-sheet-open {
    overflow: hidden;
  }

  body.is-filter-sheet-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 118;
    background: rgba(8, 20, 18, .48);
    backdrop-filter: blur(8px);
  }

  .catalog-layout {
    display: block;
  }

  #catalog {
    scroll-margin-top: 150px;
  }

  .filters {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    top: 64px;
    padding: 8px 10px;
    background: rgba(248, 250, 247, .96);
    backdrop-filter: none;
  }

  body.is-filter-sheet-open .filters {
    z-index: 130;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  body.is-filter-sheet-open .catalog-search,
  body.is-filter-sheet-open .catalog-filter-open {
    opacity: 0;
    pointer-events: none;
  }

  .catalog-search {
    min-width: 0;
    grid-column: auto;
  }

  .catalog-search input {
    min-height: 40px;
    padding-right: 38px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(34, 66, 59, .08);
  }

  .catalog-search__clear {
    right: 4px;
    width: 32px;
    height: 32px;
  }

  .catalog-filter-open {
    width: 108px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(19, 32, 31, .1);
    border-radius: 999px;
    background: #13201f;
    color: #ffffff;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(19, 32, 31, .18);
  }

  .catalog-filter-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 126;
    max-height: 74vh;
    display: grid;
    gap: 12px;
    border-radius: 18px 18px 0 0;
    background: #ffffff;
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 -24px 70px rgba(8, 20, 18, .28);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: transform .22s ease, opacity .22s ease;
  }

  .catalog-filter-sheet.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .catalog-filter-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(19, 32, 31, .08);
  }

  .catalog-filter-sheet__head strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
  }

  #catalogFilterClose {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(19, 32, 31, .1);
    border-radius: 50%;
    background: #f8faf7;
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
  }

  .catalog-filter-sheet .catalog-sort {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: none;
  }

  .catalog-filter-sheet .catalog-sort select {
    min-height: 40px;
    border-radius: 8px;
  }

  .catalog-filter-sheet .filter-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .catalog-filter-sheet .filter {
    min-height: 44px;
    justify-content: space-between;
    border-radius: 8px;
    padding: 0 11px;
    box-shadow: none;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
  }

  .product-card {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-areas:
      "visual copy"
      "visual trade"
      "bottom bottom";
    gap: 10px;
    padding: 10px;
    border-color: rgba(19, 32, 31, .08);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(34, 66, 59, .07);
  }

  .product-card__copy > span {
    background: #fff2d7;
    color: #8a5500;
  }

  .product-card h3 {
    min-height: auto;
    font-size: 16px;
    line-height: 1.22;
    -webkit-line-clamp: 3;
  }

  .product-card p {
    display: -webkit-box;
    min-height: auto;
    font-size: 12px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .product-card__trade div {
    min-height: 36px;
    padding: 6px 5px;
    background: #f8faf7;
  }

  .product-card__trade span {
    color: #6f7b75;
    font-size: 9px;
  }

  .product-card__trade strong {
    font-size: 10px;
  }

  .product-card__bottom {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 8px;
    border-top: 0;
    padding-top: 0;
  }

  .mobile-quick-trigger,
  .product-quote {
    min-height: 40px;
    border-radius: 8px;
  }

  .mobile-quick-trigger {
    background: #13201f;
    box-shadow: 0 10px 22px rgba(19, 32, 31, .18);
  }

  .product-quote {
    border: 1px solid rgba(19, 32, 31, .1);
    background: #ffffff;
    color: var(--ink);
    box-shadow: none;
    padding: 0 5px;
    font-size: 11px;
    white-space: nowrap;
  }

  .product-card.is-quick-open .product-card__quick {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 12px;
    max-height: 76vh;
    border-radius: 18px 18px 0 0;
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .product-card.is-quick-open .product-card__quick-head {
    padding-bottom: 4px;
  }

  .product-card.is-quick-open .product-card__quick-product {
    display: grid;
  }

  .product-card.is-quick-open .quick-product__image {
    width: 56px;
    height: 56px;
  }

  .product-card.is-quick-open .product-card__quick-product strong {
    font-size: 14px;
  }

  .product-card.is-quick-open .product-card__quick-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .product-card.is-quick-open .product-card__quick-qty {
    gap: 7px;
  }

  .product-card.is-quick-open .quick-qty {
    min-height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }

  .inquiry-tray {
    grid-template-columns: minmax(0, 1fr) 96px;
    bottom: 8px;
    padding: 7px;
    border-radius: 14px;
    box-shadow: 0 16px 54px rgba(8, 20, 18, .24);
  }

  .inquiry-tray__main {
    border-radius: 8px;
    background: #f7fbf8;
  }

  .inquiry-tray__main span {
    background: #13201f;
  }

  .inquiry-tray__send {
    border-radius: 8px;
    background: #11766d;
  }
}

@media (max-width: 380px) {
  .product-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .product-visual {
    min-height: 118px;
  }

  .product-card h3 {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .product-card--variant-set {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "trade"
      "bottom";
  }

  .product-card--variant-set .product-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .product-card--variant-set .product-visual img {
    object-fit: contain;
    padding: 6px;
  }
}

/* Shopify-style storefront simplification */
.top-bar {
  display: none;
}

.nav {
  min-height: 66px;
}

.nav-menu {
  gap: 26px;
  font-size: 13px;
}

.nav-menu a {
  color: #324642;
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
}

.buyer-assurance,
.proof-section,
.quote-section,
.supply-section,
.trust-section {
  display: none;
}

.collection-section {
  padding: 36px 0 22px;
  background: #ffffff;
}

.collection-head {
  margin-bottom: 18px;
}

.collection-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.collection-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.collection-card {
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 8px;
  padding: 14px 10px;
  box-shadow: none;
}

.collection-visual {
  width: 72px;
  height: 48px;
}

.collection-visual i {
  width: 52px;
  height: 42px;
}

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

.collection-card small {
  max-width: 120px;
  font-size: 11px;
  line-height: 1.25;
}

.sample-section {
  order: 4;
  padding: 40px 0;
  background: #f8fbf9;
}

.sample-grid {
  grid-template-columns: .75fr 1.25fr;
  gap: 24px;
  align-items: center;
}

.sample-showcase {
  min-height: 260px;
  border-radius: 8px;
}

.sample-copy h2 {
  font-size: clamp(28px, 2.8vw, 40px);
}

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

.sample-points div {
  padding: 12px;
  box-shadow: none;
}

.catalog-section {
  order: 3;
  padding: 42px 0 54px;
  background: #ffffff;
}

.catalog-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 18px;
}

.catalog-section .section-head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}

.catalog-section .section-head__side p {
  display: none;
}

.catalog-quick-actions .button--light {
  display: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 12px;
  align-items: start;
}

.catalog-search {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: none;
}

.catalog-search label {
  margin: 0;
  white-space: nowrap;
  font-size: 11px;
}

.catalog-search__field {
  min-width: 0;
}

.catalog-search input {
  min-height: 34px;
}

.catalog-search small {
  display: none;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 36px;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 12px;
}

.filter span:last-child {
  opacity: .62;
}

.catalog-sort {
  display: none;
}

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

.product-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-color: #e8eeeb;
  border-radius: 8px;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 118, 109, .28);
  box-shadow: 0 18px 44px rgba(34, 66, 59, .1);
}

.product-visual,
.product-card--variant-set .product-visual {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 0;
  border-bottom: 1px solid #edf3f0;
  border-radius: 8px 8px 0 0;
  background: #f8fbf9;
}

.product-card:not(.product-card--variant-set) .product-visual img,
.product-card--variant-set .product-visual img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.product-card__copy {
  max-width: none;
  padding: 2px 14px 0;
}

.product-card__copy > span {
  margin-bottom: 8px;
  padding: 4px 8px;
  font-size: 10px;
}

.product-card h3 {
  min-height: 44px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card p {
  min-height: 40px;
  font-size: 12px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__trade {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 14px;
}

.product-card__trade div {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.product-card__trade div:nth-child(3) {
  display: none;
}

.product-card__trade span {
  margin-bottom: 2px;
  font-size: 9px;
}

.product-card__trade strong {
  font-size: 11px;
}

.product-card__bottom {
  margin-top: auto;
  grid-template-columns: 1fr;
  gap: 9px;
  padding: 10px 14px 14px;
  border-top: 0;
}

.variant-picker__head {
  margin-bottom: 6px;
}

.variant-picker__head strong {
  display: none;
}

.variant-size-options,
.variant-swatches {
  gap: 5px;
}

.variant-size {
  min-height: 22px;
  padding: 0 8px;
  font-size: 10px;
}

.variant-swatch {
  width: 20px;
  height: 20px;
}

.product-quote {
  width: 100%;
  min-height: 40px;
  border-radius: 6px;
  background: #13201f;
  font-size: 12px;
}

.product-card__quick {
  display: none;
}

.floating-whatsapp {
  right: 16px;
  bottom: 16px;
  min-height: 48px;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 14px 34px rgba(31, 157, 98, .24);
  animation: none;
}

.floating-whatsapp__copy small {
  display: none;
}

.floating-whatsapp__icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.product-detail-panel {
  border-radius: 8px;
  background: #ffffff;
}

.product-detail-grid {
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: 28px;
}

.product-detail-media {
  border: 0;
  border-radius: 8px;
  background: #f8fbf9;
}

.product-detail-copy {
  align-content: start;
}

.product-detail-copy .eyebrow {
  width: fit-content;
  min-height: 24px;
}

.product-detail-copy h2 {
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.08;
}

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

.product-detail-stats div {
  min-height: 54px;
  border-radius: 6px;
  background: #fafcfb;
}

.product-detail-extra {
  display: block;
}

.product-detail-disclosure,
.product-detail-proof {
  border-top: 1px solid #e8eeeb;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.product-detail-disclosure summary,
.product-detail-proof summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.product-detail-disclosure summary::-webkit-details-marker,
.product-detail-proof summary::-webkit-details-marker {
  display: none;
}

.product-detail-disclosure summary::after,
.product-detail-proof summary::after {
  content: "+";
  color: var(--teal);
  font-size: 18px;
  line-height: 1;
}

.product-detail-disclosure[open] summary::after,
.product-detail-proof[open] summary::after {
  content: "-";
}

.product-detail-extra__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 10px;
}

.product-detail-extra__grid div {
  border: 1px solid #e1ece7;
  border-radius: 6px;
  background: #fbfdfc;
  padding: 8px;
}

.product-detail-proof ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  padding: 0 0 10px;
}

.product-detail-proof li {
  font-size: 10.5px;
}

.product-detail-note {
  display: none;
}

.contact-section {
  padding-top: 48px;
}

@media (min-width: 981px) and (max-height: 820px) {
  .product-detail-grid {
    gap: 20px;
  }

  .product-detail-copy h2 {
    font-size: clamp(24px, 2.15vw, 34px);
  }

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

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

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .nav-menu {
    gap: 14px;
  }

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

  .filters {
    grid-template-columns: 1fr;
  }

  .sample-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-section .section-head {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card--variant-set {
    grid-template-columns: 1fr;
    display: flex;
  }

  .product-card__copy,
  .product-card__trade,
  .product-card__bottom {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-card h3,
  .product-card p {
    min-height: 0;
  }

  .product-detail-disclosure,
  .product-detail-proof {
    border-color: #e8eeeb;
  }

  .product-detail-extra__grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    display: none;
  }
}

/* Catalog toolbar final overrides */
@media (min-width: 681px) {
  .catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    top: auto;
    z-index: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .catalog-filter-open,
  .catalog-filter-sheet__head {
    display: none;
  }

  .catalog-filter-sheet {
    display: block;
    min-width: 0;
  }

  .catalog-filter-sheet .filter-strip {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .catalog-filter-sheet .filter {
    min-height: 36px;
    justify-content: center;
    border-radius: 999px;
    padding: 0 13px;
  }

  .catalog-grid {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  #catalog {
    scroll-margin-top: 92px;
  }

  .catalog-section {
    padding-top: 34px;
  }

  .catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .filters {
    position: static;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-search {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-grid {
    margin-top: 0;
  }
}

/* Storefront final polish */
@media (min-width: 681px) {
  .catalog-layout {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .filters,
  .catalog-grid,
  .catalog-pagination {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .filters {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  }

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

  .catalog-section .section-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-section .section-head__side,
  .catalog-quick-actions {
    display: none;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .catalog-section .section-head h2 {
    font-size: clamp(34px, 8vw, 52px);
  }
}

@media (max-width: 680px) {
  .nav-cta {
    display: none;
  }

  .catalog-section {
    padding: 30px 0 42px;
  }

  .catalog-section .section-head {
    gap: 16px;
    margin-bottom: 14px;
  }

  .catalog-section .section-head__side,
  .catalog-quick-actions {
    display: none;
  }

  .catalog-section .section-head h2 {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .catalog-layout {
    width: 100%;
    gap: 12px;
  }

  .filters,
  .catalog-grid,
  .catalog-pagination {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .catalog-search {
    min-height: 48px;
  }

  .product-card,
  .product-card--variant-set {
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
  }

  .product-visual,
  .product-card--variant-set .product-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: 250px;
    border-radius: 8px 8px 0 0;
  }

  .product-card--variant-set .product-visual {
    aspect-ratio: 16 / 9;
  }

  .product-card:not(.product-card--variant-set) .product-visual img,
  .product-card--variant-set .product-visual img {
    padding: 8px;
    object-fit: contain;
  }

  .product-card__copy {
    padding-top: 2px;
  }

  .product-card h3 {
    font-size: 16px;
    line-height: 1.22;
    -webkit-line-clamp: 2;
  }

  .product-card p {
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .product-card__trade,
  .product-card__bottom {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-card__bottom {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 12px;
  }

  .mobile-quick-trigger,
  .product-quote {
    min-height: 38px;
  }

  .floating-whatsapp {
    display: inline-flex;
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .floating-whatsapp__copy {
    display: none;
  }

  .floating-whatsapp__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

.product-card .product-visual,
.product-card__copy {
  cursor: pointer;
}

@media (max-width: 680px) {
  .product-detail-modal {
    align-items: center;
    padding: 8px;
  }

  .modal-panel.product-detail-panel,
  .product-detail-panel {
    width: min(100%, calc(100vw - 16px));
    max-height: calc(100dvh - 16px);
    padding: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 14px;
  }

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

  .product-detail-media {
    grid-template-rows: auto auto;
    gap: 6px;
    min-height: 0;
    padding: 8px;
  }

  .product-detail-media > img {
    width: 100%;
    height: min(36vh, 230px);
    max-height: 230px;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .product-detail-gallery {
    grid-auto-columns: 48px;
    gap: 6px;
    padding-bottom: 0;
  }

  .product-detail-gallery__item {
    height: 42px;
    border-radius: 8px;
  }

  .product-detail-media p {
    display: none;
  }

  .product-detail-copy {
    gap: 7px;
    padding: 0;
  }

  .product-detail-copy .eyebrow {
    min-height: 20px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .product-detail-copy h2 {
    max-width: 100%;
    font-size: 21px;
    line-height: 1.12;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-detail-copy > p:not(.eyebrow):not(.product-detail-note) {
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }

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

  .product-detail-stats div {
    min-height: 45px;
    padding: 6px 7px;
  }

  .product-detail-disclosure summary,
  .product-detail-proof summary {
    min-height: 34px;
    font-size: 12px;
  }

  .product-detail-variants {
    gap: 6px;
  }

  .product-detail-variants > span {
    font-size: 11px;
  }

  .detail-size,
  .detail-variant {
    min-height: 30px;
    font-size: 11px;
  }

  .product-detail-actions {
    position: static;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .product-detail-actions .button {
    min-height: 38px;
  }
}

@media (max-width: 680px) {
  .product-card__bottom .mobile-quick-trigger {
    background: #13201f;
    color: #ffffff;
  }

  .product-card__bottom .product-quote {
    border: 1px solid rgba(19, 32, 31, .14);
    background: #ffffff;
    color: var(--ink);
    box-shadow: none;
  }
}

/* Accessibility and conversion refinements */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #f5b949;
  outline-offset: 3px;
}

@media (max-width: 680px) {
  .hero-slider {
    min-height: 700px;
  }

  .hero-slide__copy h1,
  .hero-slide__copy h2 {
    max-width: 360px;
    font-size: 33px;
    line-height: 1.04;
  }

  .hero-slide__content {
    padding-bottom: 220px;
  }

  .hero-slide--halloween .hero-slide__content {
    padding-bottom: 220px;
  }

  .hero-slide--halloween .hero-slide__copy h2 {
    max-width: none;
    font-size: 24px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
  }

  .hero-slide--halloween .hero-actions .button--light {
    display: inline-flex;
  }

  .hero-carousel-controls {
    bottom: 150px;
  }

  .hero-proof-strip {
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
  }

  .hero-proof-strip div {
    min-height: 56px;
    padding: 8px 10px;
  }

  .hero-proof-strip strong {
    margin-bottom: 2px;
    font-size: 15px;
  }

  .hero-proof-strip span {
    font-size: 10px;
  }

  .verification-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .verification-row b {
    text-align: left;
  }
}

.inquiry-modal-panel {
  width: min(760px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.inquiry-modal-panel .modal-close {
  z-index: 4;
}

.inquiry-modal-body {
  min-height: 0;
  overflow: auto;
  padding: 24px;
}

.inquiry-modal-panel .modal-head h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.inquiry-modal-panel .modal-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.inquiry-modal-panel .modal-side {
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
}

.modal-message-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.modal-message-preview > summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.modal-message-preview > summary::-webkit-details-marker {
  display: none;
}

.modal-message-preview > summary::after {
  content: "+";
  color: var(--teal);
  font-size: 20px;
}

.modal-message-preview[open] > summary::after {
  content: "−";
}

.modal-message-preview .modal-message {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px 16px;
}

.modal-message-preview .modal-message textarea {
  min-height: 116px;
}

.inquiry-modal-panel .inquiry-modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin: 0;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -12px 30px rgba(34, 66, 59, .08);
}

#inquiryModal .inquiry-modal-actions {
  position: relative;
  bottom: auto;
}

.inquiry-modal-panel .modal-note {
  margin: 0;
  text-align: left;
}

.modal-action-buttons {
  display: flex;
  gap: 10px;
}

.product-detail-essential {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}

.product-detail-essential div {
  min-width: 0;
  border: 1px solid #dfeae5;
  border-radius: 7px;
  background: #f8fcfa;
  padding: 9px 10px;
}

.product-detail-essential span,
.product-detail-essential strong {
  display: block;
}

.product-detail-extra__carton {
  grid-column: 1 / -1;
}

.product-detail-essential span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-detail-essential strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

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

.product-card__trade div:nth-child(3) {
  display: block;
}

.product-card__trade span {
  font-size: 10px;
}

.product-card__trade strong {
  font-size: 12px;
  line-height: 1.3;
}

.product-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.product-card--variant-set .product-visual {
  aspect-ratio: 4 / 3;
}

.product-detail-share-row {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.product-detail-share-row button {
  border: 0;
  background: transparent;
  color: var(--teal);
  padding: 3px 0;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.product-detail-share-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

@media (min-width: 681px) {
  button.floating-whatsapp {
    width: 52px !important;
    height: 52px;
    min-height: 52px;
    right: 24px;
    bottom: 24px;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
  }

  .floating-whatsapp .floating-whatsapp__copy {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .modal {
    padding: 8px;
  }

  .inquiry-modal-panel {
    width: min(100%, calc(100vw - 16px));
    max-height: calc(100dvh - 16px);
  }

  .inquiry-modal-body {
    padding: 18px;
  }

  .inquiry-modal-panel .modal-head {
    padding-right: 38px;
  }

  .inquiry-modal-panel .modal-head h2 {
    font-size: 27px;
  }

  .inquiry-modal-panel .modal-head p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.5;
  }

  .inquiry-modal-panel .modal-side,
  .inquiry-modal-panel .inquiry-modal-actions {
    grid-template-columns: 1fr;
  }

  .inquiry-modal-panel .modal-summary,
  .inquiry-modal-panel .modal-options {
    padding: 14px;
  }

  .inquiry-modal-panel .inquiry-modal-actions {
    gap: 8px;
    padding: 10px 12px 12px;
  }

  .modal-action-buttons {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .modal-action-buttons .button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
  }

  .product-detail-essential {
    grid-template-columns: 1fr;
  }

  .product-detail-extra__carton {
    grid-column: auto;
  }

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

  .product-detail-share-row {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final buyer-confidence overrides (kept last so legacy responsive rules cannot undo them). */
.collection-section {
  order: 2;
}

.catalog-section {
  order: 3;
}

.sample-section {
  order: 4;
}

.trust-section {
  display: block;
  order: 5;
}

.faq-section {
  order: 6;
}

.contact-section {
  order: 7;
}

.hero-slide:not(.hero-slide--halloween) .hero-slide__image {
  left: auto;
  right: 0;
  width: 56%;
  object-fit: contain;
  object-position: center;
  padding: 46px 4% 138px 0;
  transform: none;
  background: linear-gradient(145deg, #eff8f3, #ffffff);
}

.hero-slide:not(.hero-slide--halloween)::before {
  background: linear-gradient(90deg, #f6faf7 0%, rgba(246, 250, 247, .98) 39%, rgba(246, 250, 247, .66) 58%, rgba(246, 250, 247, .08) 100%);
}

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

.product-card__trade div:nth-child(4) {
  display: block;
}

@media (max-width: 760px) {
  .hero-slide:not(.hero-slide--halloween) .hero-slide__image {
    width: 100%;
    padding: 180px 12px 120px;
    opacity: .24;
    object-position: center bottom;
  }

  .hero-slide:not(.hero-slide--halloween)::before {
    background: linear-gradient(180deg, rgba(246, 250, 247, .98) 0%, rgba(246, 250, 247, .92) 60%, rgba(246, 250, 247, .72) 100%);
  }

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