﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #20252a;
  --muted: #77716b;
  --line: #e6e0d7;
  --paper: #fbf8f3;
  --soft: #f3efe8;
  --white: #ffffff;
  --teal: #20252a;
  --gold: #bd9144;
  --champagne: #eadcc6;
  --coral: #bd9144;
  --shadow: 0 14px 34px rgba(40, 35, 30, 0.08);
  --radius: 6px;
  --max: 1200px;
  --font-body: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #fbf8f3 0%, #f7f2ec 100%);
}

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

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

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

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(217, 222, 217, 0.86);
  backdrop-filter: blur(14px);
}

.site-main {
  padding-top: 118px;
}

.admin-bar .site-header {
  top: 32px;
}

.topbar {
  color: #6b645d;
  background: #fffdf9;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.topbar-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-contact,
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-contact a + a {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #6f4d18;
  background: rgba(250, 245, 237, 0.94);
  border: 1px solid rgba(189, 145, 68, 0.24);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(42, 34, 24, 0.08);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon svg path {
  fill: currentColor;
}

.social-icon:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  gap: 0;
  padding: 4px 0 3px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(184, 139, 69, 0.5);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
}

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

.brand-wordmark {
  display: block;
  text-align: center;
}

.brand strong {
  font-family: var(--font-display);
  color: #17191b;
  font-size: 27px;
  font-weight: 500;
  line-height: 0.95;
  white-space: nowrap;
}

.brand small {
  color: #bd9144;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.05;
  text-indent: 4px;
  white-space: nowrap;
}

.brand small + small {
  margin-top: 1px;
  letter-spacing: 3.2px;
  text-indent: 3.2px;
}

.nav-links,
.nav-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  justify-content: center;
  color: #384144;
  font-size: 16px;
  font-weight: 500;
}

.nav-links > a,
.dropdown > a {
  padding: 30px 0;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 332px;
  padding: 14px;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(189, 145, 68, 0.24);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(43, 36, 28, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: 0.18s ease;
  backdrop-filter: blur(18px) saturate(1.08);
}

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

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.dropdown-menu a {
  position: relative;
  display: block;
  padding: 10px 12px 10px 14px;
  color: #34383a;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.dropdown-menu a:hover {
  color: #17191b;
  background: rgba(247, 239, 226, 0.88);
  transform: translateX(2px);
}

.dropdown-menu a:hover::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #bd9144;
  border-radius: 999px;
}

.nav-tools {
  justify-content: flex-end;
  gap: 14px;
}

.nav-links,
.nav-tools,
.sample-pill,
.icon-button,
.language-menu,
.nav-search {
  white-space: nowrap;
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 190px;
  min-height: 42px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf7;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 145, 68, 0.12);
}

.nav-search span {
  display: grid;
  place-items: center;
  width: 38px;
  color: #8e8b86;
  line-height: 1;
}

.nav-search span svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-search input {
  width: 128px;
  min-width: 0;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  opacity: 1;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.inline-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: none;
  width: 300px;
  padding: 9px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(189, 145, 68, 0.24);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(43, 36, 28, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.08);
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--gold);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.language-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 65;
  display: none;
  min-width: 168px;
  padding: 9px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(189, 145, 68, 0.24);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(43, 36, 28, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.08);
}

.language-menu.is-open .language-options,
.language-menu:hover .language-options {
  display: grid;
  gap: 4px;
}

.language-options button {
  padding: 10px 12px;
  color: #34383a;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.language-options button:hover,
.language-options button.is-active {
  color: #17191b;
  background: rgba(247, 239, 226, 0.88);
  transform: translateX(2px);
}

.inline-search-results.is-open {
  display: grid;
  gap: 6px;
}

.inline-search-results a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  color: #34383a;
  border-radius: 7px;
  transition: background 0.16s ease, color 0.16s ease;
}

.inline-search-results a:hover {
  background: rgba(247, 239, 226, 0.88);
  color: #17191b;
}

.inline-search-results img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
}

.inline-search-results b,
.inline-search-results small {
  display: block;
}

.inline-search-results small {
  color: #8a8177;
}

.inline-search-results p {
  margin: 0;
  padding: 10px;
  color: #8a8177;
  font-size: 13px;
}

.icon-button,
.sample-pill {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
}

.sample-pill {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  font-weight: 600;
}

.sample-pill b,
.float-list b {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 5px;
  color: var(--teal);
  background: var(--champagne);
  border-radius: 50%;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: var(--ink);
}

.hero-slider,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
}

.slide-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: min(760px, 82vw);
  background: linear-gradient(90deg, rgba(14, 13, 12, 0.7), rgba(14, 13, 12, 0.38) 58%, rgba(14, 13, 12, 0));
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.slide-intro {
  width: min(690px, 52vw);
  padding-top: 26px;
}

.hero-kicker,
.slide-intro h1,
.slide-intro .lead,
.slide-intro .hero-actions {
  opacity: 0;
  transform: translateY(22px);
}

.slide.is-active .hero-kicker {
  animation: heroTextIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.12s;
}

.slide.is-active .slide-intro h1 {
  animation: heroTextIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.25s;
}

.slide.is-active .slide-intro .lead {
  animation: heroTextIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.42s;
}

.slide.is-active .slide-intro .hero-actions {
  animation: heroTextIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.58s;
}

.hero-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.slide-intro h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(52px, 5.35vw, 82px);
  font-weight: 500;
  line-height: 0.98;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.slide-content .lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-weight: 500;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions,
.section-head,
.filters,
.list-actions,
.detail-actions,
.catalog-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.primary,
.button.compact {
  color: var(--white);
  background: var(--gold);
}

.button.secondary {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
}

.hero .button.secondary,
.contact-panel .button.secondary,
.page-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero .button {
  min-height: 54px;
  padding: 13px 30px;
  font-size: 15px;
}

.hero .button.primary {
  box-shadow: 0 16px 32px rgba(189, 145, 68, 0.28);
}

.hero .button.secondary {
  min-width: 210px;
}

.hero .button.primary span {
  margin-left: 10px;
  transition: transform 0.18s ease;
}

.hero .button.primary:hover span {
  transform: translateX(4px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 24px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 46px;
  background: var(--gold);
}

.button.compact {
  width: 100%;
  min-height: 28px;
  padding: 5px 10px;
  font-size: 10px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.collection-section {
  padding: 42px 0 34px;
}

.collection-section + .collection-section {
  padding-top: 26px;
}

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

.more-categories-panel[hidden] {
  display: none;
}

.more-categories-control {
  width: min(var(--max), calc(100% - 36px));
  margin: -6px auto 12px;
  display: flex;
  justify-content: center;
}

.more-categories-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 22px;
  color: #7f5b25;
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(189, 145, 68, 0.42);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(70, 54, 32, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.more-categories-toggle::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  line-height: 1;
}

.more-categories-toggle[aria-expanded="true"]::after {
  content: "-";
}

.more-categories-toggle:hover {
  transform: translateY(-1px);
  background: #fff8ec;
  border-color: rgba(189, 145, 68, 0.7);
  box-shadow: 0 16px 32px rgba(70, 54, 32, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.section.slim {
  padding: 42px 0 24px;
}

.section.slim.cta-section {
  width: 100%;
  padding: 0;
  background: #1b1916;
}

.partner-band {
  overflow: hidden;
  padding: 34px 0 36px;
  background: transparent;
  border-bottom: 1px solid rgba(230, 224, 215, 0.78);
  text-align: center;
}

.partner-title {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 24px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.18;
  text-align: center;
  white-space: nowrap;
}

.partner-title span {
  color: var(--gold);
}

.section-head {
  position: relative;
  justify-content: center;
  margin-bottom: 28px;
  text-align: center;
}

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

.section-head h2 {
  margin-bottom: 9px;
  font-size: clamp(30px, 3vw, 44px);
}

.section-copy {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.section-head .text-link {
  position: absolute;
  right: max(18px, calc((100% - var(--max)) / 2));
  top: 50%;
  transform: translateY(-50%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 18px;
  color: #7f5b25;
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid rgba(189, 145, 68, 0.38);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(70, 54, 32, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.text-link::after {
  content: ">";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.text-link:hover {
  color: #5f4218;
  background: #fff8ec;
  border-color: rgba(189, 145, 68, 0.68);
  box-shadow: 0 14px 28px rgba(70, 54, 32, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

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

.flags-band {
  overflow: hidden;
  padding: 0 0 34px;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.flags-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 34s linear infinite;
}

.flags-track span {
  display: inline-block;
  min-width: 44px;
  color: #2b2d30;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

.sample-grid.is-updating {
  opacity: 0.62;
  pointer-events: none;
}

.sample-card,
.category-card,
.proof-card,
.process-card,
.catalog-card,
.contact-box,
.empty-state,
.sample-list-row,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 34, 36, 0.06);
}

.sample-card {
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.sample-card:hover {
  border-color: #d8be8e;
  transform: translateY(-3px);
}

.sample-image img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  background: #d8d8d6;
}

.sample-body {
  padding: 9px 10px 10px;
}

.sample-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-block;
  margin-bottom: 0;
  padding: 3px 8px;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.sample-body h3 {
  margin-bottom: 3px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}

.sample-body p {
  min-height: 24px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.sample-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 0 8px;
}

.sample-body dl div {
  padding: 5px 7px;
  background: #fbf3e5;
  border: 1px solid rgba(189, 145, 68, 0.24);
  border-radius: 5px;
}

.sample-body dt {
  margin-bottom: 1px;
  color: #9a6c24;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.sample-body dd {
  margin: 0;
  color: #1f2021;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.12;
}

.sample-check {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.category-section {
  width: 100%;
  padding: 62px max(8px, calc((100% - var(--max)) / 2)) 56px;
  background: #fbf8f3;
}

.category-section-head {
  margin-bottom: 34px;
}

.category-section-head .eyebrow {
  margin-bottom: 12px;
  letter-spacing: 6px;
}

.category-section-head h2 {
  font-size: clamp(34px, 3.4vw, 46px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.category-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  min-height: 180px;
  padding: 16px 16px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border-color: #e4ded5;
  border-radius: 10px;
  box-shadow: none;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 145, 68, 0.5);
  box-shadow: 0 16px 34px rgba(43, 36, 28, 0.08);
}

.category-image {
  display: block;
  width: 100%;
  padding: 0;
}

.category-card img {
  width: 100%;
  max-width: 116px;
  aspect-ratio: 1;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
  background: #e7e3dc;
}

.category-card b {
  display: block;
  padding: 0;
  color: #17191b;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.proof-grid,
.process-grid,
.catalog-grid,
.contact-grid,
.oem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.factory-proof-section {
  width: 100%;
  padding: 54px max(18px, calc((100% - var(--max)) / 2)) 70px;
  background: #fbf7f1;
}

.factory-proof-head {
  margin-bottom: 30px;
}

.factory-proof-head .eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 5px;
}

.factory-proof-head h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.1vw, 42px);
}

.factory-proof-head .section-copy {
  max-width: 600px;
  color: #837b72;
  font-size: 14px;
}

.factory-proof-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 20px;
}

.factory-proof-card {
  overflow: hidden;
  padding: 0;
  background: #fffdf9;
  border: 1px solid #e7dfd5;
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(36, 30, 24, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.factory-proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 145, 68, 0.46);
  box-shadow: 0 20px 42px rgba(36, 30, 24, 0.1);
}

.factory-proof-card img {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 1.58;
  object-fit: cover;
}

.factory-proof-body {
  padding: 20px 18px 24px;
}

.proof-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: #b8842d;
  background: linear-gradient(145deg, #fff8ea, #f4e7d0);
  border: 1px solid rgba(184, 132, 45, 0.34);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 18px rgba(184, 132, 45, 0.1);
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.factory-proof-card h3 {
  margin-bottom: 8px;
  color: #1f2021;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.factory-proof-card p {
  margin: 0;
  color: #5f5952;
  font-size: 13.5px;
  line-height: 1.65;
}

.proof-card,
.process-card,
.catalog-card,
.contact-box {
  overflow: hidden;
  padding: 18px;
  box-shadow: none;
}

.contact-box img {
  width: 100%;
  margin-top: 14px;
  border-radius: var(--radius);
}

.proof-card img,
.catalog-card img {
  width: calc(100% + 36px);
  max-width: none;
  margin: -18px -18px 16px;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.proof-card h3,
.process-card h3,
.catalog-card h3 {
  font-size: 16px;
}

.proof-card p,
.process-card p,
.catalog-card p {
  color: var(--muted);
  font-size: 13px;
}

.proof-card.factory-proof-card {
  padding: 0;
}

.proof-card.factory-proof-card img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 1.58;
  object-fit: cover;
}

.proof-card.factory-proof-card h3 {
  margin-bottom: 8px;
  color: #1f2021;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.proof-card.factory-proof-card p {
  margin: 0;
  color: #5f5952;
  font-size: 13.5px;
  line-height: 1.65;
}

.oem-strip {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.oem-strip > img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: var(--radius);
}

.oem-strip h2 {
  max-width: 600px;
}

.oem-strip p {
  color: var(--muted);
}

.oem-strip ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.oem-strip li {
  position: relative;
  padding-left: 24px;
  color: #3d403f;
}

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

.cert-section {
  text-align: center;
}

.cert-section .section-head {
  justify-content: center;
  margin-bottom: 26px;
}

.cert-section .section-copy {
  max-width: none;
  margin: 8px 0 0;
  color: #8a8177;
  font-size: 13px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}

.cert-grid span {
  display: flex;
  flex-direction: column;
  place-items: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  color: #1f2021;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(36, 30, 24, 0.04);
}

.cert-grid i {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #bd9144;
}

.cert-grid i::before {
  content: "";
  width: 28px;
  height: 28px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 4.6 25 8v7.8c0 5.3-3.6 9.7-9 11.6-5.4-1.9-9-6.3-9-11.6V8l9-3.4Z' fill='none' stroke='%23bd9144' stroke-width='2.2' stroke-linejoin='round'/%3E%3Cpath d='m12.2 15.8 2.6 2.6 5.2-5.5' fill='none' stroke='%23bd9144' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--gold);
  background: #f7f1e8;
  border-radius: 50%;
  font-weight: 600;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background: #1f1d1a;
  border-radius: var(--radius);
}

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

.contact-panel p,
.contact-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .qr-pair {
  align-self: center;
  justify-self: center;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.contact-panel .qr-pair .qr-thumb {
  width: 132px;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
}

.contact-panel .qr-pair .qr-thumb img {
  width: 110px;
  height: 110px;
  border-radius: 6px;
}

.business-panel {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
  padding: 56px;
  background: #1e1b18;
  border-radius: 18px;
}

.business-copy .spark-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  transform: rotate(45deg);
}

.business-copy .eyebrow {
  margin-bottom: 14px;
}

.business-copy h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.business-copy > p {
  max-width: 460px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.business-lines {
  display: grid;
  max-width: 620px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-lines p {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-lines span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.business-lines b {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

.business-qr-board {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 42px 34px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.business-qr {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.business-qr img {
  width: 132px;
  height: 132px;
  padding: 10px;
  object-fit: cover;
  background: #fffdf9;
  border-radius: 8px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
  padding: 58px max(24px, calc((100vw - var(--max)) / 2));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: var(--white);
  background: #1b1916;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 2.8vw, 40px);
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button {
  min-height: 42px;
  padding: 10px 28px;
}

.final-cta .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.final-cta .button.primary {
  min-width: 210px;
}

.contact-mini {
  display: grid;
  gap: 12px;
}

.contact-mini p {
  margin: 0;
}

.contact-mini strong,
.contact-mini span {
  display: block;
}

.contact-mini span {
  color: var(--muted);
  font-size: 13px;
}

.qr-pair {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.qr-thumb {
  display: grid;
  align-self: flex-start;
  justify-items: center;
  gap: 7px;
  width: 104px;
  min-height: 0;
  padding: 8px;
  color: #5f5952;
  background: #fffdf9;
  border: 1px solid #e7dfd5;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 30, 24, 0.05);
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.qr-thumb img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 5px;
}

.qr-thumb span {
  display: block;
  min-height: 14px;
  white-space: nowrap;
}

.filters {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.filters select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.samples-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 22px;
  align-items: start;
}

.sticky-sidebar {
  position: sticky;
  top: 134px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 76px max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(120deg, rgba(32, 37, 42, 0.92), rgba(23, 79, 84, 0.9)), url("../images/banner-03.jpg") center/cover;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.inner-page .page-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: 72px max(20px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  background: linear-gradient(90deg, rgba(20, 18, 16, 0.76), rgba(20, 18, 16, 0.34) 58%, rgba(20, 18, 16, 0.12)), url("../images/hero-jewelry-workbench.jpg") center/cover;
}

.inner-page .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.inner-page .page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.inner-page .page-hero .eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 6px;
}

.inner-page .page-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(44px, 4.8vw, 70px);
  font-weight: 500;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.inner-page .page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.inner-page .section {
  padding: 56px 0;
}

.inner-page .section-head {
  margin-bottom: 26px;
}

.inner-page .inner-section-head {
  margin-top: 48px;
}

.inner-page .filters,
.inner-page .sticky-sidebar,
.inner-page .contact-box,
.inner-page .process-card,
.inner-page .catalog-card,
.inner-page .proof-card,
.inner-page .spec-table,
.inner-page .sample-list-row,
.inner-page .empty-state,
.inner-page details {
  background: #fffdf9;
  border-color: #e7dfd5;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(36, 30, 24, 0.06);
}

.inner-page .filters {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.inner-page .filters select,
.inner-page .sample-list-row input,
.inner-page .rfq-form input,
.inner-page .rfq-form textarea,
.inner-page .rfq-form select {
  background: #fffaf2;
  border-color: #e7dfd5;
  border-radius: 8px;
}

.inner-page .sticky-sidebar {
  padding: 20px;
}

.inner-page .contact-mini {
  gap: 14px;
}

.inner-page .contact-mini strong {
  color: #9a6c24;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.inner-page .contact-mini span {
  color: #2b2d30;
  font-size: 14px;
}

.inner-page .proof-card,
.inner-page .catalog-card {
  padding: 0;
}

.inner-page .proof-card img,
.inner-page .catalog-card img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 1.48;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.inner-page .proof-card h3,
.inner-page .catalog-card h3,
.inner-page .contact-box h3,
.inner-page .process-card h3 {
  margin: 18px 18px 8px;
  color: #1f2021;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.inner-page .proof-card p,
.inner-page .catalog-card p,
.inner-page .contact-box p,
.inner-page .process-card p {
  margin: 0 18px 20px;
  color: #5f5952;
  font-size: 13.5px;
  line-height: 1.65;
}

.inner-page .process-card {
  padding: 22px;
}

.inner-page .process-card span {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: #b8842d;
  background: linear-gradient(145deg, #fff8ea, #f4e7d0);
  border: 1px solid rgba(184, 132, 45, 0.28);
}

.inner-page .process-card h3,
.inner-page .process-card p {
  margin-left: 0;
  margin-right: 0;
}

.inner-page .catalog-actions {
  padding: 0 18px 20px;
}

.inner-page .contact-box {
  padding: 22px;
}

.inner-page .contact-box h3,
.inner-page .contact-box p {
  margin-left: 0;
  margin-right: 0;
}

.inner-page .contact-box img {
  border-radius: 8px;
}

.inner-page .contact-highlight {
  color: #1f2021;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.inner-page .contact-action-gap {
  height: 12px;
}

.inner-page .contact-subtitle {
  margin-top: 28px;
}

.inner-page .contact-overview-section {
  padding-top: 52px;
}

.inner-page .contact-overview {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.inner-page .contact-location-card,
.inner-page .contact-method-card {
  background: #fffdf9;
  border: 1px solid #e7dfd5;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(36, 30, 24, 0.06);
}

.inner-page .contact-location-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 364px;
  overflow: hidden;
}

.inner-page .contact-location-copy {
  padding: 28px 28px 22px;
}

.inner-page .contact-location-copy .eyebrow {
  margin-bottom: 10px;
  letter-spacing: 5px;
}

.inner-page .contact-location-copy h2 {
  max-width: 420px;
  margin-bottom: 12px;
  color: #1f2021;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.inner-page .contact-location-copy p {
  margin: 0 0 12px;
  color: #5f5952;
  font-size: 15px;
  line-height: 1.7;
}

.inner-page .contact-location-copy span {
  display: block;
  max-width: 520px;
  color: #8a8177;
  font-size: 13.5px;
  line-height: 1.65;
}

.inner-page .contact-location-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  border-top: 1px solid #eee5d8;
}

.inner-page .contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inner-page .contact-method-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  min-height: 312px;
  padding: 20px;
}

.inner-page .contact-method-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 42px minmax(260px, 0.9fr) minmax(260px, 1fr);
  align-items: center;
  min-height: 150px;
}

.inner-page .contact-method-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #9a6c24;
  background: linear-gradient(145deg, #fff8ea, #f4e7d0);
  border: 1px solid rgba(184, 132, 45, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(184, 132, 45, 0.1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.inner-page .contact-method-icon.whatsapp-mark {
  color: #15884e;
  background: linear-gradient(145deg, #f3fff8, #dff5e8);
  border-color: rgba(21, 136, 78, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(21, 136, 78, 0.1);
}

.inner-page .contact-method-copy h3 {
  margin: 0 0 8px;
  color: #1f2021;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.inner-page .contact-method-card .contact-highlight {
  margin: 0 0 14px;
  color: #1f2021;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.inner-page .contact-method-card .button {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 13px;
}

.inner-page .contact-method-card .qr-thumb {
  grid-column: 1 / -1;
  justify-self: stretch;
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0;
  padding: 12px;
  background: #fffaf2;
  border-color: #eadfce;
  font-size: 12px;
}

.inner-page .contact-method-card .qr-thumb img {
  width: min(154px, 100%);
  height: auto;
  aspect-ratio: 1;
}

.inner-page .contact-method-note {
  grid-column: auto;
  margin: 0;
  color: #766d63;
  font-size: 14px;
  line-height: 1.65;
}

.inner-page .rfq-form {
  background: #fffdf9;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.inner-page .rfq-form label {
  color: #2b2d30;
  font-weight: 600;
}

.inner-page .detail-gallery > img,
.inner-page .detail-gallery div img {
  border-color: #e7dfd5;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(36, 30, 24, 0.06);
}

.inner-page .spec-table {
  overflow: hidden;
}

.inner-page .spec-table th {
  color: #9a6c24;
  background: #fbf3e5;
}

.inner-page .spec-table td {
  color: #2b2d30;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr) 260px;
  gap: 26px;
  align-items: start;
}

[data-sample-detail] {
  display: contents;
}

.detail-gallery > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.detail-gallery div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.detail-gallery div img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.spec-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.spec-table th {
  width: 150px;
  color: var(--teal);
}

.sample-list-table {
  display: grid;
  gap: 12px;
}

.sample-list-row {
  display: grid;
  grid-template-columns: 92px minmax(180px, 1fr) 190px 170px auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.sample-list-row img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius);
}

.sample-list-row span {
  display: block;
  color: var(--muted);
}

.sample-list-row small {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.estimate-cell {
  padding: 12px;
  background: #f8f1e7;
  border: 1px solid #ead8b8;
  border-radius: var(--radius);
}

.estimate-cell span {
  color: var(--muted);
  font-size: 12px;
}

.estimate-cell b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.estimate-summary {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 20px;
  color: var(--ink);
  background: #fff3d9;
  border: 2px solid #d39b2f;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(189, 145, 68, 0.18);
}

.estimate-summary span {
  display: block;
  color: #9a6615;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.estimate-summary strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
}

.estimate-summary p {
  margin: 0;
  color: #4d3a1c;
  font-size: 15px;
  font-weight: 600;
}

.estimate-summary p b {
  color: #9a3b16;
  text-transform: uppercase;
}

.sample-list-row input,
.rfq-form input,
.rfq-form textarea,
.rfq-form select {
  width: 100%;
  min-height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf8;
}

.text-danger {
  color: #9c3d34;
  background: transparent;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rfq-form label {
  display: grid;
  gap: 7px;
  color: #394144;
  font-size: 13px;
  font-weight: 600;
}

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

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.footer {
  padding: 52px max(18px, calc((100% - var(--max)) / 2)) 20px;
  color: var(--white);
  background: #1b1916;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
  gap: 54px;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-brand h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.footer a,
.footer p,
.footer small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
}

.footer a:hover {
  color: var(--white);
}

.footer .social-row {
  gap: 8px;
  margin-top: 12px;
}

.footer .social-row .social-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin: 0;
  color: #6f4d18;
  background: #f4eadb;
  border-color: rgba(234, 220, 198, 0.52);
}

.footer .social-row .social-icon:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  width: min(640px, 100%);
  margin: 34px auto 0;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.floating-tools {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.float-wa,
.float-list {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
}

.float-wa {
  position: relative;
  gap: 8px;
  isolation: isolate;
  background: #20b858;
  box-shadow: 0 14px 28px rgba(32, 184, 88, 0.2), var(--shadow);
}

.float-wa svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.float-wa span {
  position: relative;
  z-index: 1;
}

.float-wa::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(32, 184, 88, 0.42);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.94);
  animation: whatsappRing 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappRing {
  0% {
    opacity: 0.46;
    transform: scale(0.94);
  }
  70% {
    opacity: 0;
    transform: scale(1.22);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(20, 24, 26, 0.78);
}

.qr-modal.is-open {
  display: grid;
}

.qr-modal img {
  width: min(420px, 82vw);
  border-radius: 18px;
  border: 10px solid var(--white);
}

.qr-modal button,
.search-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.qr-modal p {
  color: var(--white);
  font-weight: 600;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.print-catalog {
  display: none;
}

@media (max-width: 1240px) {
  .nav {
    width: min(var(--max), calc(100% - 22px));
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-tools {
    gap: 7px;
  }

  .icon-button,
  .sample-pill {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-search {
    min-height: 38px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 3.2px;
    text-indent: 3.2px;
  }
}

@media (max-width: 1040px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-main {
    padding-top: 56px;
  }

  .topbar {
    display: none;
  }

  .nav {
    width: min(var(--max), calc(100% - 36px));
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 14px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
    max-width: 260px;
  }

  .brand-wordmark {
    text-align: left;
  }

  .brand strong {
    font-size: 25px;
    line-height: 0.96;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 3.2px;
    text-indent: 0;
  }

  .brand small + small {
    letter-spacing: 2.7px;
    text-indent: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    width: 48px;
    min-height: 48px;
    padding: 12px;
    border-radius: 10px;
  }

  .nav-links,
  .nav-tools {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-links.is-open,
  .nav-tools.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-links.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-links > a,
  .dropdown > a {
    padding: 10px 12px;
    background: #fbfaf7;
    border: 1px solid var(--line);
    border-radius: 8px;
    line-height: 1.2;
  }

  .dropdown {
    display: grid;
    grid-column: 1 / -1;
    min-height: 0;
    gap: 8px;
    align-items: start;
  }

  .dropdown > a {
    color: #9a6c24;
    font-weight: 700;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin-top: 0;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 9px 10px;
    white-space: normal;
    background: #fffdf9;
    border: 1px solid rgba(189, 145, 68, 0.18);
  }

  .business-panel {
    grid-template-columns: 1fr;
    padding: 44px;
  }

  .business-qr-board {
    justify-content: flex-start;
  }

  .inner-page .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .inner-page .contact-method-card,
  .inner-page .contact-method-card-wide {
    min-height: 0;
  }

  .inner-page .filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    margin-bottom: 16px;
  }

  .inner-page .filters select {
    grid-column: span 2;
  }

  .inner-page .filters .button,
  .inner-page .filters strong {
    grid-column: span 2;
  }

  .inner-page .filters select,
  .inner-page .filters .button {
    min-height: 42px;
  }

  .inner-page .filters strong {
    align-self: center;
    justify-self: center;
    font-size: 13px;
  }

  .footer {
    padding: 42px 24px 18px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand {
    max-width: 560px;
  }

  .footer-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 24px;
    align-items: start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-contact h3 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .footer-contact .qr-pair {
    grid-column: 2;
    grid-row: 2 / span 4;
    justify-content: flex-end;
  }

  .footer-contact .social-row {
    grid-column: 2;
    justify-content: flex-end;
    margin-top: 0;
  }

  .floating-tools {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .float-wa,
  .float-list {
    min-height: 42px;
    padding: 9px 13px;
    font-size: 12px;
    box-shadow: 0 10px 22px rgba(19, 27, 31, 0.16);
  }
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-tools {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-links.is-open,
  .nav-tools.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-search,
  .nav-search:focus-within {
    width: 100%;
  }

  .nav-search input,
  .nav-search:focus-within input {
    width: 100%;
    opacity: 1;
    padding-right: 12px;
  }

  .language-options {
    left: 0;
    right: auto;
  }

  .inline-search-results {
    left: 0;
    right: auto;
    width: 100%;
  }

  .nav-links > a,
  .dropdown > a {
    padding: 10px 12px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin-top: 0;
  }


  .sample-grid,
  .category-grid,
  .proof-grid,
  .process-grid,
  .catalog-grid,
  .oem-grid,
  .cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .samples-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .inner-page .contact-overview {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    top: 0;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-main {
    padding-top: 52px;
  }

  .topbar {
    display: none;
  }

  .topbar-inner,
  .contact-panel,
  .footer-grid,
  .rfq-form,
  .sample-list-row {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    display: grid;
    padding: 9px 0;
  }

  .nav {
    width: min(var(--max), calc(100% - 28px));
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
    max-width: 240px;
  }

  .brand-wordmark {
    text-align: left;
  }

  .brand strong {
    font-size: 25px;
    line-height: 0.96;
  }

  .brand small {
    margin-top: 4px;
    font-size: 8px;
    letter-spacing: 3.2px;
    line-height: 1.05;
    text-indent: 0;
  }

  .brand small + small {
    letter-spacing: 2.7px;
    text-indent: 0;
  }

  .nav-links.is-open {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    width: 48px;
    min-height: 48px;
    padding: 12px;
    border-radius: 10px;
  }

  .inner-page .page-hero {
    min-height: 236px;
    padding: 46px max(18px, calc((100% - var(--max)) / 2)) 42px;
    background-position: center;
  }

  .inner-page .page-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 3.6px;
  }

  .inner-page .page-hero h1,
  .inner-page .page-hero h2 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.08;
  }

  .inner-page .page-hero p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.55;
  }

  .inner-page .section {
    width: min(var(--max), calc(100% - 28px));
    padding: 42px 0;
  }

  .inner-page .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .inner-page .filters select,
  .inner-page .filters .button {
    width: 100%;
    min-height: 40px;
    padding: 8px 11px;
    font-size: 13px;
  }

  .inner-page .filters strong {
    grid-column: 1 / -1;
    text-align: center;
  }

  .inner-page .sticky-sidebar {
    padding: 14px;
  }

  .detail-layout {
    gap: 18px;
  }

  .detail-copy h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .detail-actions,
  .catalog-actions,
  .list-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-actions .button,
  .catalog-actions .button,
  .list-actions .button {
    width: 100%;
  }

  .spec-table {
    margin: 18px 0;
    font-size: 13px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px;
  }

  .spec-table th {
    width: 108px;
  }

  .sample-list-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .sample-list-row img {
    width: 78px;
    height: 78px;
  }

  .sample-list-row label,
  .sample-list-row .estimate-cell,
  .sample-list-row .text-danger {
    grid-column: 1 / -1;
  }

  .estimate-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .estimate-summary strong {
    font-size: 30px;
  }

  .estimate-summary p {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-panel {
    gap: 18px;
    padding: 22px;
  }

  .contact-panel h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .contact-panel .qr-pair {
    justify-content: flex-start;
  }

  .contact-panel .qr-pair .qr-thumb {
    width: 116px;
  }

  .contact-panel .qr-pair .qr-thumb img {
    width: 96px;
    height: 96px;
  }

  .inner-page .contact-overview-section {
    padding-top: 38px;
  }

  .inner-page .contact-location-copy {
    padding: 22px;
  }

  .inner-page .contact-location-copy h2 {
    font-size: 30px;
  }

  .inner-page .contact-method-card {
    padding: 18px;
  }

  .hero,
  .slide-content {
    min-height: 620px;
  }

  .slide-intro {
    width: 100%;
    padding-top: 56px;
  }

  .hero-kicker {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .slide-intro h1 {
    font-size: 42px;
  }

  .slide-content .lead {
    font-size: 16px;
  }

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

  .partner-band {
    padding: 28px 0 30px;
  }

  .partner-title {
    margin-bottom: 18px;
    font-size: 24px;
    white-space: normal;
  }

  .section-head .text-link {
    position: static;
    transform: none;
    margin-top: 14px;
  }

  .flags-track {
    gap: 24px;
  }

  .flags-track span {
    min-width: 38px;
    font-size: 17px;
  }

  .sample-grid,
  .category-grid,
  .proof-grid,
  .process-grid,
  .catalog-grid,
  .contact-grid,
  .oem-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oem-strip,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .business-panel {
    padding: 32px;
    border-radius: 14px;
  }

  .business-lines p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .business-lines b {
    text-align: left;
  }

  .business-qr-board {
    flex-wrap: wrap;
    padding: 26px;
  }

  .footer-contact {
    display: block;
    padding-top: 0;
    border-top: 0;
  }

  .footer-contact .qr-pair,
  .footer-contact .social-row {
    justify-content: flex-start;
  }

  .inner-page .contact-method-grid,
  .inner-page .contact-method-card,
  .inner-page .contact-method-card-wide {
    grid-template-columns: 1fr;
  }

  .inner-page .contact-method-card {
    justify-items: start;
    min-height: 0;
  }

  .inner-page .contact-method-card .qr-thumb {
    justify-self: start;
  }

  .final-cta {
    text-align: center;
  }

  .sample-list-row {
    align-items: start;
  }

  .floating-tools {
    left: auto;
    right: 14px;
    bottom: 14px;
    gap: 8px;
    justify-items: end;
  }

  .float-wa,
  .float-list {
    min-height: 42px;
    justify-content: center;
    padding: 9px 13px;
    font-size: 12px;
    box-shadow: 0 10px 22px rgba(19, 27, 31, 0.16);
  }

  .float-wa {
    width: 52px;
    padding: 0;
  }

  .float-wa span {
    display: none;
  }

  .float-wa svg {
    width: 23px;
    height: 23px;
  }

  .float-list {
    max-width: calc(100vw - 92px);
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
  }

  .float-list b {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .inner-page .page-hero {
    min-height: 210px;
    padding: 38px 18px 36px;
  }

  .inner-page .page-hero h1,
  .inner-page .page-hero h2 {
    font-size: 30px;
  }

  .inner-page .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    gap: 8px;
  }

  .inner-page .filters select,
  .inner-page .filters .button {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .inner-page .filters select:nth-of-type(1) {
    grid-column: 1 / -1;
  }

  .inner-page .filters .button.secondary {
    grid-column: 1 / -1;
  }

  .inner-page .filters strong {
    grid-column: 1 / -1;
    padding-top: 2px;
    font-size: 13px;
  }

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

  .sample-body {
    padding: 8px;
  }

  .sample-body h3 {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .sample-body p {
    min-height: 22px;
    font-size: 9.5px;
  }

  .sample-body dl {
    gap: 4px;
    margin-bottom: 7px;
  }

  .sample-body dl div {
    padding: 5px;
  }

  .sample-body dt {
    font-size: 8px;
  }

  .sample-body dd {
    font-size: 10px;
  }

  .sample-body .button.compact {
    min-height: 30px;
    padding: 5px 6px;
    font-size: 9px;
    line-height: 1.15;
    white-space: normal;
  }

  .category-grid,
  .proof-grid,
  .process-grid,
  .catalog-grid,
  .contact-grid,
  .oem-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
    padding: 54px 0;
  }
}

@media (max-width: 1040px) {
  .inner-page .filters {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .inner-page .filters::-webkit-scrollbar {
    display: none;
  }

  .inner-page .filters select,
  .inner-page .filters .button,
  .inner-page .filters strong {
    flex: 0 0 auto;
    grid-column: auto;
    white-space: nowrap;
  }

  .inner-page .filters select {
    width: auto;
    min-width: 104px;
    max-width: 132px;
  }

  .inner-page .filters .button {
    min-width: 76px;
    min-height: 38px;
    padding: 7px 13px;
    font-size: 12.5px;
  }

  .inner-page .filters .button.secondary {
    min-width: 104px;
  }

  .inner-page .filters strong {
    min-width: 72px;
    color: #2b2d30;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 1040px) {
  .footer {
    padding: 44px 24px 96px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand h3 {
    max-width: 460px;
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.28;
  }

  .footer-brand p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.75;
  }

  .footer-grid > div:not(.footer-brand):not(.footer-contact) {
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
  }

  .footer h3 {
    margin-bottom: 12px;
  }

  .footer a,
  .footer p,
  .footer small {
    margin-bottom: 8px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .footer-grid > div:not(.footer-brand):not(.footer-contact) a {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .footer-grid > div:not(.footer-brand):not(.footer-contact) a:last-child {
    border-bottom: 0;
  }

  .footer-contact {
    margin-top: 4px;
    padding-top: 18px;
  }

  .footer-bottom {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 38px 18px 108px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand h3 {
    max-width: 280px;
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.22;
  }

  .footer-brand p {
    max-width: 300px;
    font-size: 13.5px;
    line-height: 1.72;
  }

  .footer-grid > div:not(.footer-brand):not(.footer-contact) {
    padding: 14px;
    border-radius: 10px;
  }

  .footer h3 {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .footer a,
  .footer p,
  .footer small {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .footer-contact .qr-pair {
    gap: 10px;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 8px 14px;
    margin-top: 22px;
    font-size: 11px;
    line-height: 1.5;
  }

  .floating-tools {
    left: 14px;
    right: 14px;
    bottom: 12px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 8px;
    justify-items: stretch;
  }

  .float-wa {
    width: 50px;
    min-height: 50px;
  }

  .float-list {
    width: 100%;
    max-width: none;
    min-height: 50px;
    padding: 8px 12px;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 380px) {
  .footer {
    padding-inline: 14px;
  }

  .footer-grid {
    gap: 12px;
  }

  .footer-grid > div:not(.footer-brand):not(.footer-contact) {
    padding: 12px;
  }

  .footer a,
  .footer p,
  .footer small {
    font-size: 12px;
  }
}

@media (max-width: 1040px) {
  .nav {
    width: min(var(--max), calc(100% - 24px));
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 14px;
    padding: 8px 0 10px;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
    max-width: 148px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    font-size: 7px;
    letter-spacing: 2.8px;
    text-indent: 0;
  }

  .brand small + small {
    letter-spacing: 2.35px;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links,
  .nav-tools {
    display: flex !important;
    width: 100%;
    padding: 0;
    overflow-x: auto;
    overflow-y: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar,
  .nav-tools::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    grid-column: 2;
    gap: 16px;
    justify-content: flex-start;
    font-size: 13px;
  }

  .nav-tools {
    grid-column: 1 / -1;
    gap: 8px;
    justify-content: flex-start;
  }

  .nav-links > a,
  .dropdown > a {
    flex: 0 0 auto;
    padding: 8px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .dropdown {
    flex: 0 0 auto;
    display: flex;
    grid-column: auto;
    min-height: 0;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 300px;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 18px 36px rgba(43, 36, 28, 0.14);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .nav-search {
    flex: 0 0 190px;
    width: 190px;
    min-height: 38px;
  }

  .nav-search input,
  .nav-search:focus-within input {
    width: 128px;
  }

  .language-menu,
  .sample-pill {
    flex: 0 0 auto;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(var(--max), calc(100% - 20px));
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px 0 9px;
  }

  .brand,
  .nav-links,
  .nav-tools {
    grid-column: 1;
  }

  .brand {
    max-width: 138px;
  }

  .brand strong {
    font-size: 21px;
  }

  .nav-links {
    gap: 18px;
    padding-bottom: 1px;
    font-size: 13px;
  }

  .nav-tools {
    padding-bottom: 2px;
  }

  .nav-search,
  .nav-search:focus-within {
    flex-basis: 178px;
    width: 178px;
  }

  .sample-pill {
    min-height: 38px;
    padding: 8px 12px;
  }

  .dropdown-menu {
    left: 0;
    width: min(300px, calc(100vw - 24px));
    transform: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    transform: none;
  }
}

@media (min-width: 1041px) {
  .nav-links > a,
  .dropdown > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    transform-origin: center;
    transition: color 0.18s ease, transform 0.18s ease;
  }

  .nav-links > a::after,
  .dropdown > a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    opacity: 0;
    transition: left 0.18s ease, right 0.18s ease, opacity 0.18s ease;
  }

  .nav-links > a:hover,
  .nav-links > a:focus-visible,
  .dropdown:hover > a,
  .dropdown:focus-within > a {
    color: #151718;
    transform: scale(1.08);
  }

  .nav-links > a:hover::after,
  .nav-links > a:focus-visible::after,
  .dropdown:hover > a::after,
  .dropdown:focus-within > a::after {
    left: 0;
    right: 0;
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    touch-action: pan-x;
  }

  .nav-links > a,
  .dropdown,
  .dropdown > a {
    touch-action: pan-x;
  }
}

@media (max-width: 1040px) {
  .nav {
    width: min(var(--max), calc(100% - 22px));
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px;
    min-height: 0;
    padding: 6px 0 7px;
  }

  .brand,
  .nav-links {
    grid-column: auto !important;
  }

  .brand {
    flex: 0 0 124px;
    max-width: 124px;
    padding: 2px 0;
  }

  .brand strong {
    font-size: 20px;
    line-height: 0.94;
  }

  .brand small {
    margin-top: 2px;
    font-size: 6.5px;
    letter-spacing: 2.5px;
  }

  .brand small + small {
    letter-spacing: 2.1px;
  }

  .nav-links {
    min-width: 0;
    align-self: center;
    gap: 15px;
    padding: 0 !important;
    font-size: 12.5px;
    line-height: 1.15;
  }

  .nav-links > a,
  .dropdown > a {
    padding: 7px 0;
  }

  .dropdown {
    min-height: 0;
  }

  .partner-band {
    padding: 22px 0 16px;
  }

  .partner-title {
    margin-bottom: 12px;
  }

  .section {
    padding: 38px 0;
  }

  .collection-section {
    padding: 28px 0 22px;
  }

  .collection-section + .collection-section {
    padding-top: 16px;
  }

  .section-head,
  .collection-section .section-head {
    margin-bottom: 16px;
  }

  .section-head .text-link {
    margin-top: 10px;
  }

  .more-categories-control {
    margin: -2px auto 4px;
  }
}

@media (max-width: 760px) {
  .nav {
    width: calc(100% - 18px);
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 9px;
    padding: 6px 0;
  }

  .brand {
    flex-basis: 116px;
    max-width: 116px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 6px;
    letter-spacing: 2.35px;
  }

  .brand small + small {
    letter-spacing: 1.95px;
  }

  .nav-links {
    gap: 14px;
    font-size: 12.5px;
  }

  .partner-band {
    padding: 18px 0 12px;
  }

  .partner-title {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.18;
  }

  .section {
    width: min(var(--max), calc(100% - 24px));
    padding: 30px 0;
  }

  .collection-section {
    padding: 22px 0 16px;
  }

  .collection-section + .collection-section {
    padding-top: 12px;
  }

  .section-head,
  .collection-section .section-head {
    margin-bottom: 12px;
  }
}

@media (max-width: 420px) {
  .nav {
    width: calc(100% - 16px);
    gap: 8px;
  }

  .site-main {
    padding-top: 48px;
  }

  .brand {
    flex-basis: 108px;
    max-width: 108px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 5.8px;
    letter-spacing: 2px;
  }

  .brand small + small {
    letter-spacing: 1.72px;
  }

  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .nav-links > a,
  .dropdown > a {
    padding: 6px 0;
  }

  .partner-title {
    font-size: 20px;
  }

  .section {
    width: min(var(--max), calc(100% - 20px));
    padding: 26px 0;
  }

  .collection-section {
    padding: 20px 0 14px;
  }
}

@media (max-width: 760px) {
  .category-section {
    padding: 24px 0 22px;
  }

  .category-section-head {
    width: calc(100% - 24px);
    margin: 0 auto 14px;
  }

  .category-section-head .eyebrow {
    margin-bottom: 8px;
    letter-spacing: 4px;
  }

  .category-section-head h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .category-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0 12px 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 clamp(66px, 18vw, 84px);
    min-height: 96px;
    padding: 8px 6px;
    gap: 6px;
    scroll-snap-align: start;
    border-radius: 8px;
    touch-action: pan-x;
  }

  .category-card:hover {
    transform: none;
    box-shadow: none;
  }

  .category-card img {
    width: 48px;
    max-width: 48px;
    border-radius: 7px;
  }

  .category-card b {
    font-size: 10.5px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .category-grid {
    gap: 7px;
    padding-inline: 10px;
  }

  .category-card {
    flex-basis: 66px;
    min-height: 92px;
  }

  .category-card img {
    width: 46px;
    max-width: 46px;
  }

  .category-card b {
    font-size: 10px;
  }
}

@media (max-width: 1040px) {
  .business-panel {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.72fr) !important;
    gap: 28px;
    align-items: center;
    padding: 38px 40px;
    border-radius: 16px;
  }

  .business-copy .spark-mark {
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .business-copy .eyebrow {
    margin-bottom: 10px;
  }

  .business-copy h2 {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .business-copy > p {
    max-width: 430px;
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .business-lines p {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .business-lines span {
    font-size: 10.5px;
  }

  .business-lines b {
    font-size: 13px;
  }

  .business-qr-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    justify-content: center;
    align-items: start;
    padding: 24px;
    border-radius: 12px;
  }

  .business-qr {
    min-width: 0;
    gap: 8px;
    font-size: 11.5px;
    line-height: 1.25;
    text-align: center;
  }

  .business-qr img {
    width: 104px;
    height: 104px;
    padding: 8px;
    border-radius: 7px;
  }
}

@media (max-width: 760px) {
  .business-panel {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 24px 22px;
    border-radius: 14px;
  }

  .business-copy h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .business-copy > p {
    max-width: none;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.55;
  }

  .business-lines {
    max-width: none;
  }

  .business-lines p {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .business-lines span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .business-lines b {
    font-size: 12.5px;
    text-align: right;
  }

  .business-qr-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
  }

  .business-qr img {
    width: min(104px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .business-qr span {
    font-size: 11px;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  .business-panel {
    padding: 20px 18px;
  }

  .business-copy h2 {
    font-size: 26px;
  }

  .business-lines p {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px;
  }

  .business-lines span {
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .business-lines b {
    font-size: 12px;
  }

  .business-qr-board {
    gap: 8px;
    padding: 12px;
  }

  .business-qr img {
    width: min(92px, 100%);
    padding: 7px;
  }
}

@media (max-width: 1040px) {
  .cert-section {
    overflow: hidden;
  }

  .cert-section .section-head {
    margin-bottom: 16px;
  }

  .cert-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 18px 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .cert-grid::-webkit-scrollbar {
    display: none;
  }

  .cert-grid span {
    flex: 0 0 138px;
    min-height: 74px;
    gap: 6px;
    padding: 10px;
    scroll-snap-align: start;
    font-size: 11px;
    touch-action: pan-x;
  }

  .cert-grid i {
    width: 22px;
    height: 22px;
  }

  .factory-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .factory-proof-card {
    min-width: 0;
  }

  .factory-proof-card img {
    height: 138px;
  }

  .factory-proof-body {
    padding: 14px;
  }

  .factory-proof-card h3 {
    font-size: 14px;
  }

  .factory-proof-card p {
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (max-width: 760px) {
  .cert-grid {
    gap: 8px;
    padding-inline: 12px;
  }

  .cert-grid span {
    flex-basis: 92px;
    min-height: 68px;
    padding: 8px 6px;
    font-size: 10px;
  }

  .factory-proof-section {
    overflow: hidden;
  }

  .factory-proof-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    padding: 0 12px 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .factory-proof-grid::-webkit-scrollbar {
    display: none;
  }

  .factory-proof-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    touch-action: pan-x;
  }

  .factory-proof-card img {
    height: 112px;
  }

  .factory-proof-body {
    padding: 12px;
  }

  .factory-proof-card h3 {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .factory-proof-card p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .cert-grid span {
    flex-basis: 82px;
  }

  .factory-proof-card {
    flex-basis: 206px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .flags-track,
  .float-wa::after {
    animation: none !important;
  }

  .hero-kicker,
  .slide-intro h1,
  .slide-intro .lead,
  .slide-intro .hero-actions {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body > *:not([data-print-catalog]) {
    display: none !important;
  }

  [data-print-catalog],
  .print-catalog {
    display: block !important;
  }

  .print-catalog {
    padding: 20px;
    color: #111;
    background: #fff;
    font-family: var(--font-body);
  }

  .print-catalog h1 {
    font-size: 26px;
  }

  .print-catalog table {
    width: 100%;
    border-collapse: collapse;
  }

  .print-catalog th,
  .print-catalog td {
    padding: 8px;
    border: 1px solid #aaa;
    text-align: left;
    vertical-align: middle;
  }

  .print-catalog img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
}

/* WordPress compatibility styles */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gold);
}

.custom-logo {
  max-width: 220px;
  height: auto;
}

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

.content-card,
.rules-grid article {
  padding: 24px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(230, 224, 215, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card h1,
.content-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  margin: 20px 4px 0;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-numbers.current {
  color: var(--white);
  background: var(--ink);
}

.form-success,
.form-error {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 600;
}

.form-success {
  color: #176a36;
  background: #e8f6ed;
}

.form-error {
  color: #9c3d34;
  background: #fae9e7;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(360px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(30, 26, 20, 0.16);
  backdrop-filter: blur(12px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  font-size: 13px;
}

.woocommerce-section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.wsj-woocommerce .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wsj-woocommerce .woocommerce ul.products::before,
.wsj-woocommerce .woocommerce ul.products::after {
  display: none;
}

.wsj-woocommerce .woocommerce ul.products li.product {
  width: auto;
  float: none;
  margin: 0;
  padding: 12px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wsj-woocommerce .woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.wsj-woocommerce .woocommerce a.button,
.wsj-woocommerce .woocommerce button.button,
.wsj-woocommerce .woocommerce input.button,
.wsj-woocommerce .woocommerce #respond input#submit {
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 600;
}

.wsj-woocommerce .woocommerce a.button:hover,
.wsj-woocommerce .woocommerce button.button:hover,
.wsj-woocommerce .woocommerce input.button:hover,
.wsj-woocommerce .woocommerce #respond input#submit:hover {
  color: var(--white);
  background: #8a6428;
}

.wsj-woocommerce .woocommerce div.product div.images img,
.wsj-woocommerce .woocommerce-cart table.cart img {
  border-radius: var(--radius);
}

.wsj-woocommerce .woocommerce table.shop_table,
.wsj-woocommerce .woocommerce form.checkout,
.wsj-woocommerce .woocommerce-cart .cart-collaterals .cart_totals {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.wsj-woocommerce .woocommerce form .form-row input.input-text,
.wsj-woocommerce .woocommerce form .form-row textarea,
.wsj-woocommerce .woocommerce form .form-row select {
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.woocommerce-notices-wrapper {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
}

@media (max-width: 880px) {
  .post-grid,
  .rules-grid,
  .wsj-woocommerce .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .post-grid,
  .rules-grid,
  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .wsj-woocommerce .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wsj-woocommerce .woocommerce ul.products li.product {
    padding: 8px;
  }

  .wsj-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 12px;
    line-height: 1.25;
  }

  .wsj-woocommerce .woocommerce ul.products li.product .price {
    font-size: 12px;
  }

  .wsj-woocommerce .woocommerce ul.products li.product a.button {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1.15;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

/* Final mobile/tablet header pass: visible horizontal nav, compact brand. */
@media screen and (max-width: 1040px) {
  .topbar {
    display: none !important;
  }

  .site-main {
    padding-top: 56px !important;
  }

  .nav {
    width: calc(100% - 24px) !important;
    min-height: 52px !important;
    grid-template-columns: clamp(88px, 20vw, 118px) minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 6px 0 !important;
    align-items: center !important;
  }

  .brand {
    grid-column: 1 !important;
    min-width: 0 !important;
    max-width: clamp(88px, 20vw, 118px) !important;
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }

  .brand-wordmark {
    text-align: left !important;
  }

  .brand strong {
    font-size: clamp(16px, 2.4vw, 19px) !important;
    line-height: 0.96 !important;
    letter-spacing: 0.2px !important;
  }

  .brand small {
    margin-top: 2px !important;
    font-size: clamp(5.8px, 1.1vw, 7px) !important;
    line-height: 1.05 !important;
    letter-spacing: clamp(1.2px, 0.45vw, 2.2px) !important;
    text-indent: 0 !important;
  }

  .brand small + small {
    letter-spacing: clamp(1px, 0.38vw, 1.9px) !important;
  }

  .custom-logo {
    max-width: clamp(88px, 20vw, 118px) !important;
    max-height: 42px !important;
    object-fit: contain !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    grid-column: 2 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: clamp(10px, 2.4vw, 16px) !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    overscroll-behavior-y: none !important;
    touch-action: pan-x !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: clamp(12px, 1.65vw, 13.5px) !important;
    line-height: 1 !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav-links::-webkit-scrollbar {
    display: none !important;
  }

  .nav-links > a,
  .dropdown > a {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    min-height: 44px !important;
    padding: 0 !important;
    color: #31383a !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .dropdown {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    min-height: 44px !important;
  }

  .dropdown-menu {
    top: calc(100% + 6px) !important;
    left: 0 !important;
    width: min(292px, calc(100vw - 24px)) !important;
    transform: none !important;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    transform: none !important;
  }

  .floating-tools {
    left: auto !important;
    right: 20px !important;
    bottom: 20px !important;
    display: block !important;
  }

  .float-list {
    display: none !important;
  }

  .float-wa {
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .float-wa span {
    display: none !important;
  }

  .float-wa svg {
    width: 23px !important;
    height: 23px !important;
  }
}

@media screen and (max-width: 760px) {
  .site-main {
    padding-top: 52px !important;
  }

  .nav {
    width: calc(100% - 16px) !important;
    min-height: 50px !important;
    grid-template-columns: clamp(76px, 25vw, 98px) minmax(0, 1fr) !important;
    gap: 7px !important;
    padding: 5px 0 !important;
  }

  .brand {
    max-width: clamp(76px, 25vw, 98px) !important;
  }

  .brand strong {
    font-size: clamp(14px, 4.15vw, 16px) !important;
  }

  .brand small {
    font-size: clamp(5px, 1.52vw, 5.8px) !important;
    letter-spacing: clamp(0.9px, 0.48vw, 1.45px) !important;
  }

  .brand small + small {
    display: none !important;
  }

  .custom-logo {
    max-width: clamp(76px, 25vw, 98px) !important;
    max-height: 38px !important;
  }

  .nav-links {
    gap: clamp(10px, 3vw, 14px) !important;
    font-size: clamp(12px, 3.25vw, 12.8px) !important;
  }

  .dropdown-menu {
    width: min(286px, calc(100vw - 18px)) !important;
  }
}

@media screen and (max-width: 380px) {
  .site-main {
    padding-top: 50px !important;
  }

  .nav {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 6px !important;
  }

  .brand {
    max-width: 72px !important;
  }

  .brand strong {
    font-size: 13.5px !important;
  }

  .brand small {
    font-size: 4.8px !important;
    letter-spacing: 0.8px !important;
  }

  .custom-logo {
    max-width: 72px !important;
    max-height: 36px !important;
  }

  .nav-links {
    gap: 10px !important;
    font-size: 11.8px !important;
  }
}

