:root {
  --bg: #ffffff;
  --bg-soft: #f4fbfc;
  --bg-blue: #edf7fb;
  --surface: #ffffff;
  --surface-strong: #f8fcfd;
  --text: #122433;
  --muted: #5f7280;
  --faint: #dbe8ee;
  --line: #d8e6ec;
  --primary: #127a91;
  --primary-strong: #0d5c76;
  --teal: #18a98f;
  --aqua: #d8f4f1;
  --whatsapp: #1fae63;
  --warning: #d37817;
  --shadow: 0 18px 50px rgba(12, 71, 94, 0.11);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--primary-strong);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 230, 236, 0.9);
  backdrop-filter: blur(14px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 16px;
  color: #385463;
  background: #edf7fb;
  font-size: 13px;
  font-weight: 650;
}

.top-strip span {
  white-space: nowrap;
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary-strong), var(--teal));
  color: #fff;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(18, 122, 145, 0.22);
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #274454;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--primary-strong);
  border-bottom-color: var(--teal);
}

.admin-link {
  padding: 10px 14px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero-section {
  width: min(100% - 32px, var(--max));
  margin: 38px auto 0;
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 36px;
  align-items: center;
  padding-bottom: 42px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--primary-strong);
  color: #fff;
  box-shadow: 0 16px 32px rgba(13, 92, 118, 0.2);
}

.btn-secondary {
  background: #fff;
  color: var(--primary-strong);
  border-color: var(--line);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 32px rgba(31, 174, 99, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.hero-stats dt {
  color: var(--primary-strong);
  font-size: 25px;
  font-weight: 850;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(7, 44, 61, 0.14);
}

.hero-note strong {
  white-space: nowrap;
  color: var(--primary-strong);
}

.hero-note span {
  color: #4f6572;
  font-size: 13px;
  font-weight: 650;
}

.trust-row {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 56px;
}

.trust-row article {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.icon-dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 7px var(--aqua);
  flex: 0 0 auto;
}

.trust-row h2,
.trust-row p {
  margin: 0;
}

.trust-row h2 {
  font-size: 16px;
}

.trust-row p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.section-head h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.split-copy p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  color: var(--primary-strong);
  font-weight: 800;
  white-space: nowrap;
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: thin;
}

.category-chip {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #2b4b5b;
  font-size: 14px;
  font-weight: 800;
}

.category-chip.active {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(12, 71, 94, 0.06);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(7, 44, 61, 0.08);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-body h3 {
  min-height: 58px;
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.product-spec {
  margin: 8px 0 0;
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 850;
}

.product-body p {
  flex: 1;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 16px;
}

.product-actions .btn {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2d4e5d;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px var(--aqua);
}

.process-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  padding: 22px;
}

.process-panel h3 {
  margin: 0;
  font-size: 24px;
}

.process-panel ol {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.process-panel li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
}

.process-panel li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-strong);
  font-weight: 850;
}

.process-panel strong,
.process-panel p {
  margin: 0;
}

.process-panel p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.quality-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, #f4fbfc 0%, #ffffff 100%);
}

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

.quality-grid article {
  min-height: 206px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quality-grid span {
  color: var(--teal);
  font-weight: 900;
}

.quality-grid h3 {
  margin: 18px 0 8px;
  font-size: 19px;
}

.quality-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reports-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 71, 94, 0.08);
}

.reports-copy h3,
.reports-copy p {
  margin: 0;
}

.reports-copy h3 {
  font-size: 26px;
  line-height: 1.15;
}

.reports-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.report-table-wrap {
  overflow-x: auto;
}

.report-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

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

.report-table th {
  color: #385463;
  background: var(--bg-soft);
  font-size: 12px;
  text-transform: uppercase;
}

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

.service-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-grid h3,
.service-grid p {
  margin: 0;
}

.service-grid h3 {
  font-size: 19px;
}

.service-grid p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  padding-top: 48px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--primary-strong);
  border-bottom: 2px solid var(--primary-strong);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  background: #112f3e;
  color: #d8e8ee;
  padding: 50px max(16px, calc((100% - var(--max)) / 2)) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-brand small,
.site-footer p,
.site-footer span,
.site-footer a {
  color: #b5cbd4;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span,
.footer-button {
  display: block;
  margin-top: 9px;
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b5cbd4;
  text-align: left;
}

.ruo {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 100;
  max-width: min(92vw, 520px);
  padding: 13px 16px;
  border-radius: var(--radius);
  background: #112f3e;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 750;
}

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 18px 36px rgba(31, 174, 99, 0.28);
}

.floating-whatsapp span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.floating-whatsapp strong {
  font-size: 14px;
}

.product-modal {
  width: min(960px, calc(100vw - 28px));
  max-height: min(88vh, 880px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(7, 44, 61, 0.28);
  overflow: hidden;
}

.product-modal::backdrop {
  background: rgba(11, 34, 47, 0.58);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 16px;
  height: 2px;
  background: var(--text);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-body {
  max-height: inherit;
  overflow-y: auto;
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 0;
}

.modal-gallery {
  padding: 22px;
  background: var(--bg-soft);
}

.modal-gallery-main {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.modal-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.modal-thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.modal-thumbs button.active {
  border-color: var(--primary-strong);
  box-shadow: 0 0 0 2px rgba(18, 122, 145, 0.12);
}

.modal-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.modal-copy {
  padding: 32px 28px 28px;
}

.modal-copy h2 {
  margin: 0;
  padding-right: 40px;
  font-size: 32px;
  line-height: 1.12;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.modal-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.modal-copy p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.detail-list article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-list h3,
.detail-list p {
  margin: 0;
}

.detail-list h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: #385463;
}

.detail-list p {
  margin-top: 5px;
  font-size: 14px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.modal-ruo {
  padding: 14px;
  border-left: 4px solid var(--teal);
  background: var(--bg-soft);
  color: #385463;
  font-size: 13px;
  font-weight: 700;
}

.commerce-nav {
  gap: 18px;
}

.commerce-search {
  flex: 1 1 280px;
  max-width: 420px;
  position: relative;
}

.commerce-search span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-search input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.shop-hero,
.page-hero,
.catalog-shell,
.detail-main,
.contact-layout {
  width: min(100% - 32px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 48px 0 42px;
}

.shop-hero h1,
.page-hero h1,
.contact-layout h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.shop-hero p,
.page-hero p,
.contact-layout p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.shop-hero-media {
  position: relative;
}

.shop-hero-media img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.catalog-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 44, 61, 0.14);
}

.catalog-panel strong {
  color: var(--primary-strong);
}

.catalog-panel span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #385463;
  font-size: 12px;
  font-weight: 850;
}

.standards-strip {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 0 48px;
}

.standards-strip article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.standards-strip strong {
  display: block;
  color: var(--primary-strong);
  font-size: 24px;
  line-height: 1;
}

.standards-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f2fbfc 100%);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12, 71, 94, 0.1);
}

.category-card span {
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.category-card h3 {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.18;
}

.category-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.page-main {
  padding-bottom: 76px;
}

.page-hero {
  padding: 48px 0 24px;
}

.compact-hero {
  max-width: var(--max);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--primary-strong);
}

.catalog-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0 72px;
}

.catalog-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.catalog-sidebar h2 {
  margin: 0;
  font-size: 22px;
}

.category-scroll.vertical {
  display: grid;
  overflow: visible;
  padding: 0;
}

.category-scroll.vertical .category-chip {
  width: 100%;
  border-radius: var(--radius);
  text-align: left;
  white-space: normal;
}

.sidebar-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: #385463;
}

.sidebar-note strong {
  color: var(--primary-strong);
}

.sidebar-note span {
  font-size: 13px;
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.catalog-toolbar h2,
.catalog-toolbar span {
  margin: 0;
}

.catalog-toolbar h2 {
  font-size: 30px;
  line-height: 1.1;
}

.catalog-toolbar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--bg-soft);
  text-align: center;
  font-weight: 800;
}

.feature-compound {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 30px;
  align-items: center;
}

.feature-copy span,
.detail-category {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 900;
}

.feature-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.feature-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.feature-product-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.feature-product-card dl,
.spec-table {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.feature-product-card dl div,
.spec-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.feature-product-card dt,
.spec-table dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.feature-product-card dd,
.spec-table dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.reports-card.compact {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
}

.quality-section.standalone {
  width: min(100% - 32px, var(--max));
  max-width: var(--max);
  padding: 28px 0 72px;
  background: transparent;
}

.detail-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 72px;
}

.detail-gallery,
.detail-content,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 71, 94, 0.06);
}

.detail-gallery {
  padding: 18px;
}

.detail-main-image {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.detail-main-image img,
.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.detail-thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.detail-thumbs button.active {
  border-color: var(--primary-strong);
  box-shadow: 0 0 0 2px rgba(18, 122, 145, 0.12);
}

.detail-thumbs img {
  aspect-ratio: 1;
}

.detail-content {
  padding: 28px;
}

.detail-content h1 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

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

.detail-block {
  margin-top: 20px;
}

.detail-block h2,
.detail-block p {
  margin: 0;
}

.detail-block h2 {
  font-size: 19px;
}

.detail-block p {
  margin-top: 6px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: start;
  padding: 54px 0 76px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #385463;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
}

.factory-site {
  background: #fff;
}

.factory-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 36px;
  align-items: center;
  padding: 48px 0 38px;
}

.factory-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.factory-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.factory-hero-media {
  position: relative;
}

.factory-hero-media img,
.manufacturing-visual img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.factory-hero-media img {
  aspect-ratio: 1.32;
}

.factory-hero-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 8px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 32px rgba(7,44,61,.14);
}

.factory-hero-card strong {
  color: var(--primary-strong);
}

.factory-hero-card span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #385463;
  font-size: 12px;
  font-weight: 850;
}

.mobile-priority-strip {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 4px 0 48px;
}

.mobile-priority-strip article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mobile-priority-strip strong {
  display: block;
  color: var(--primary-strong);
  font-size: 30px;
  line-height: 1;
}

.mobile-priority-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.site-card-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-card,
.capability-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f4fbfc 100%);
}

.site-card span,
.capability-card span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 900;
}

.site-card h3,
.capability-card h3 {
  margin: 18px 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.site-card strong {
  color: #385463;
}

.site-card p,
.capability-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.capability-card img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.workflow-rail article {
  position: relative;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.workflow-rail span {
  color: var(--teal);
  font-weight: 900;
}

.workflow-rail strong {
  display: block;
  margin-top: 16px;
  line-height: 1.25;
}

.manufacturing-visual {
  width: min(100% - 32px, var(--max));
  margin: 0 auto 24px;
}

.manufacturing-visual img {
  aspect-ratio: 2.3;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.pagination button {
  min-width: 42px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary-strong);
  font-weight: 850;
}

.pagination button.active {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  color: #fff;
}

@media (max-width: 1100px) {
  .workflow-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .factory-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .factory-hero,
  .mobile-priority-strip,
  .manufacturing-visual {
    width: min(100% - 24px, var(--max));
  }

  .factory-hero {
    padding-top: 28px;
  }

  .factory-hero h1 {
    font-size: 38px;
  }

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

  .factory-hero-card {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .mobile-priority-strip,
  .site-card-grid,
  .capability-grid,
  .workflow-rail {
    grid-template-columns: 1fr;
  }

  .manufacturing-visual img {
    aspect-ratio: 1.2;
  }
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 28px;
  }

  .hero-media img {
    aspect-ratio: 1.32;
  }

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

  .split-section,
  .reports-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .top-strip {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .nav-wrap {
    width: min(100% - 24px, var(--max));
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

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

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .admin-link {
    border: 0;
    background: var(--bg-soft);
  }

  .hero-section,
  .section,
  .trust-row {
    width: min(100% - 24px, var(--max));
  }

  .hero-section {
    gap: 24px;
    padding-bottom: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-note {
    position: static;
    margin-top: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row,
  .product-grid,
  .quality-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .section-head h2,
  .split-copy h2 {
    font-size: 32px;
  }

  .product-body h3 {
    min-height: 0;
  }

  .reports-card {
    padding: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    border-radius: var(--radius);
  }

  .site-footer {
    padding-bottom: 88px;
  }

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

  .product-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 92vh;
    margin: auto 0 0;
    border-radius: 16px 16px 0 0;
  }

  .modal-gallery {
    padding: 16px;
  }

  .modal-copy {
    padding: 20px 16px 24px;
  }

  .modal-copy h2 {
    padding-right: 48px;
    font-size: 27px;
  }

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

@media (max-width: 430px) {
  body {
    font-size: 15px;
  }

  .top-strip {
    font-size: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-media img {
    aspect-ratio: 1.05;
  }

  .category-chip {
    font-size: 13px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .catalog-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .commerce-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }

  .shop-hero,
  .feature-compound,
  .detail-page,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-sidebar {
    position: static;
  }

  .category-scroll.vertical {
    display: flex;
    overflow-x: auto;
  }

  .category-scroll.vertical .category-chip {
    width: auto;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .shop-hero,
  .page-hero,
  .catalog-shell,
  .detail-main,
  .contact-layout,
  .standards-strip {
    width: min(100% - 24px, var(--max));
  }

  .shop-hero {
    padding-top: 32px;
    gap: 24px;
  }

  .shop-hero h1,
  .page-hero h1,
  .contact-layout h1 {
    font-size: 38px;
  }

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

  .commerce-search {
    display: none;
  }

  .catalog-panel {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .standards-strip,
  .catalog-grid,
  .category-grid,
  .reports-card.compact {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 160px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar .btn {
    width: 100%;
  }

  .feature-product-card,
  .detail-content,
  .detail-gallery,
  .contact-form {
    padding: 16px;
  }

  .feature-product-card dl div,
  .spec-table div {
    grid-template-columns: 1fr;
  }
}

.has-bottom-whatsapp {
  padding-bottom: 78px;
}

.product-card {
  cursor: pointer;
}

.floating-whatsapp {
  top: 54%;
  bottom: auto;
  transform: translateY(-50%);
}

.bottom-whatsapp {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 46;
  min-height: 54px;
  width: min(460px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 18px 38px rgba(31, 174, 99, 0.28);
  transform: translateX(-50%);
}

.bottom-whatsapp strong,
.bottom-whatsapp span {
  min-width: 0;
  line-height: 1.15;
}

.bottom-whatsapp strong {
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.bottom-whatsapp span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .has-bottom-whatsapp {
    padding-bottom: 86px;
  }

  .floating-whatsapp {
    left: auto;
    right: 12px;
    top: 58%;
    bottom: auto;
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 9px;
    border-radius: 999px;
    transform: none;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .floating-whatsapp span {
    width: 34px;
    height: 34px;
  }

  .bottom-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-height: 56px;
    transform: none;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .page-hero {
    padding: 24px 0 12px;
  }

  .shop-hero h1,
  .page-hero h1,
  .contact-layout h1 {
    font-size: 31px;
  }

  .page-hero p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.48;
  }

  .catalog-shell {
    gap: 12px;
    padding: 10px 0 56px;
  }

  .catalog-sidebar {
    gap: 10px;
    padding: 10px;
  }

  .catalog-sidebar h2 {
    font-size: 18px;
  }

  .category-scroll.vertical {
    gap: 8px;
  }

  .category-scroll.vertical .category-chip {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  .sidebar-note {
    display: none;
  }

  .catalog-toolbar {
    gap: 10px;
    margin-bottom: 10px;
  }

  .catalog-toolbar h2 {
    font-size: 23px;
  }

  .catalog-toolbar .btn {
    display: none;
  }

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

  .product-grid,
  .catalog-grid {
    gap: 8px;
  }

  .product-card {
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(12, 71, 94, 0.05);
  }

  .product-image {
    aspect-ratio: 1;
  }

  .product-category {
    display: none;
  }

  .product-body {
    padding: 7px;
  }

  .product-body h3 {
    min-height: 31px;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-spec {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    font-size: 10.5px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-body p,
  .product-actions {
    display: none;
  }
}

@media (min-width: 410px) and (max-width: 760px) {
  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 640px) and (max-width: 760px) {
  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.utility-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.utility-bar select,
.utility-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.utility-bar select {
  max-width: 118px;
  padding: 8px 10px;
}

.utility-btn {
  padding: 8px 11px;
}

.cart-btn span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-strong);
  color: #fff;
  font-size: 12px;
}

.product-effect {
  min-height: 40px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-price {
  margin-top: 10px;
  color: #0d6f61;
  font-size: 16px;
  font-weight: 900;
}

.variant-picker {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.variant-picker > strong {
  color: #385463;
  font-size: 14px;
}

.variant-picker > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.variant-picker button {
  min-height: 56px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-weight: 850;
  text-align: left;
}

.variant-picker button span {
  color: #0d6f61;
  font-size: 12px;
}

.variant-picker button.active {
  border-color: var(--primary-strong);
  background: var(--bg-soft);
  box-shadow: 0 0 0 2px rgba(18, 122, 145, 0.12);
}

.qty-control {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  color: #385463;
  font-size: 13px;
  font-weight: 850;
}

.qty-control input {
  width: 120px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
}

.detail-action-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 55;
  width: min(560px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(7, 44, 61, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.has-detail-actions {
  padding-bottom: 92px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 33, 47, 0.34);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(420px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -22px 0 54px rgba(7, 44, 61, 0.2);
  transform: translateX(105%);
  transition: transform 0.22s ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-drawer header,
.cart-drawer footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-drawer h2 {
  margin: 0;
}

.cart-drawer header button,
.modal-x {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 22px;
}

[data-cart-items] {
  min-height: 0;
  overflow-y: auto;
  padding: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--bg-soft);
}

.cart-line strong,
.cart-line span,
.cart-line b {
  display: block;
}

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

.cart-line b {
  color: #0d6f61;
}

.cart-line-actions {
  grid-column: 2;
  display: flex;
  gap: 6px;
  align-items: center;
}

.cart-line-actions button {
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary-strong);
  font-weight: 900;
}

.empty-cart {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.modal-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 18px;
}

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

.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 44, 61, 0.26);
}

.modal-card.small {
  width: min(420px, 100%);
}

.modal-card h2 {
  margin: 0 44px 16px 0;
}

.modal-x {
  position: absolute;
  right: 12px;
  top: 12px;
}

.modal-card label,
.checkout-grid label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #385463;
  font-size: 13px;
  font-weight: 850;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
}

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

.checkout-grid .span-2 {
  grid-column: span 2;
}

.payment-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.payment-image {
  width: min(180px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.payment-box code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary-strong);
  font-weight: 850;
}

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

.person-card,
.intro-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.person-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--bg-soft);
}

.person-card strong,
.person-card span {
  display: block;
  margin-top: 8px;
}

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

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.application-tags span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--primary-strong);
  font-weight: 850;
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .utility-bar {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .person-grid,
  .intro-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .brand {
    gap: 8px;
  }

  .brand small {
    display: none;
  }

  .utility-bar {
    display: grid;
    grid-template-columns: minmax(82px, .7fr) 1fr 1fr;
    gap: 6px;
  }

  .utility-bar select,
  .utility-btn {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .product-price {
    margin-top: 5px;
    font-size: 12px;
  }

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

  .detail-page {
    gap: 12px;
    padding-bottom: 112px;
  }

  .detail-gallery {
    padding: 10px;
  }

  .detail-main-image {
    aspect-ratio: 1.28;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 72px));
    gap: 8px;
    margin-top: 8px;
  }

  .detail-content {
    padding: 16px;
  }

  .detail-content h1 {
    margin-top: 10px;
    font-size: 32px;
  }

  .detail-action-bar {
    left: 10px;
    right: 10px;
    bottom: 8px;
    width: auto;
    gap: 8px;
    padding: 8px;
    transform: none;
  }

  .floating-whatsapp {
    top: 58%;
    bottom: auto;
  }

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

  .checkout-grid .span-2 {
    grid-column: auto;
  }

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

  .person-card {
    padding: 6px;
  }

  .person-card strong {
    font-size: 11px;
    line-height: 1.2;
  }

  .person-card span {
    font-size: 10px;
    line-height: 1.25;
  }

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

.bottom-whatsapp {
  display: none !important;
}

.has-bottom-whatsapp {
  padding-bottom: 0;
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 24px;
  }
}

@media (max-width: 760px) {
  .factory-hero {
    gap: 12px;
    padding: 18px 0 14px;
  }

  .factory-hero-copy h1 {
    font-size: 29px;
    line-height: 1.03;
  }

  .factory-hero-copy p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .factory-hero-media {
    min-height: 0;
  }

  .factory-hero-media img {
    max-height: 150px;
    object-fit: cover;
  }

  .compact-home.section {
    padding: 24px 0;
  }

  .featured-home.section {
    padding: 24px 0 18px;
  }

  .compact-home .section-head,
  .featured-home .section-head {
    margin-bottom: 10px;
  }

  .compact-home .section-head h2,
  .featured-home .section-head h2 {
    font-size: 24px;
  }

  .compact-home .section-head p {
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .compact-home .capability-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .compact-home .capability-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 44px) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 10px;
  }

  .compact-home .capability-card span {
    justify-content: center;
    padding: 6px 0;
  }

  .compact-home .capability-card h3,
  .compact-home .capability-card p {
    margin: 0;
  }

  .compact-home .capability-card h3 {
    font-size: 15px;
  }

  .compact-home .capability-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .compact-home .site-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .compact-home .site-card {
    min-height: 0;
    padding: 9px;
  }

  .compact-home .site-card span {
    padding: 5px 6px;
    font-size: 10px;
  }

  .compact-home .site-card h3 {
    margin: 8px 0 3px;
    font-size: 13px;
    line-height: 1.15;
  }

  .compact-home .site-card strong,
  .compact-home .site-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .products-section .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .products-section .category-card {
    min-height: 78px;
    padding: 7px 5px;
  }

  .products-section .category-card span,
  .products-section .category-card p {
    display: none;
  }

  .products-section .category-card h3 {
    margin: 0;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
  }

  .quality-preview.section {
    padding: 24px 0 34px;
  }

  .reports-card.compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
