:root {
  --orange: #f28c00;
  --orange-dark: #d86f00;
  --ink: #2b2b2b;
  --muted: #777777;
  --light: #f6f6f4;
  --soft: #eeeeec;
  --line: #e3e3df;
  --white: #ffffff;
  --green: #118058;
  --shadow: 0 18px 42px rgba(30, 30, 28, 0.12);
  --radius: 6px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: relative;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px clamp(16px, 4vw, 52px);
  color: var(--white);
  background: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 clamp(16px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(227, 227, 223, 0.9);
  box-shadow: 0 8px 24px rgba(27, 27, 25, 0.06);
  backdrop-filter: blur(14px);
}

.site-nav,
.header-right,
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav-left {
  justify-self: start;
}

.site-nav-right {
  justify-content: flex-end;
}

.site-nav a {
  color: #3e3e3d;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 54px;
}

.brand img {
  width: 104px;
  height: 46px;
  object-fit: contain;
}

.header-right {
  justify-self: end;
  justify-content: flex-end;
  gap: 22px;
}

.header-actions {
  justify-content: flex-end;
}

.mobile-only {
  display: none;
}

.header-link {
  border: 0;
  background: transparent;
  color: #3e3e3d;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
}

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

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 13, 0.82) 0%, rgba(14, 14, 13, 0.55) 42%, rgba(14, 14, 13, 0.05) 78%),
    url("assets/product-images/hero-banner.png") center right / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 74px clamp(18px, 3vw, 30px);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.75rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 900;
  line-height: 1.25;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(242, 140, 0, 0.28);
}

.button-whatsapp {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #1fb85a;
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.full {
  width: 100%;
}

.section,
.section-narrow,
.advantage,
.process {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px clamp(18px, 3vw, 30px);
}

.section-narrow {
  max-width: 800px;
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p,
.section-narrow p,
.quote-layout p,
.sustainability p,
.about-copy li,
.advantage-grid p,
.process-grid p,
.category-card p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-cards a,
.contact-cards p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.contact-cards strong {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.contact-cards span {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading > p:last-child,
.section-narrow > p:last-child {
  margin: 12px auto 0;
  max-width: 670px;
}

.section-mark {
  display: block;
  width: 26px;
  height: 15px;
  margin: 0 auto 8px;
  position: relative;
}

.section-mark::before,
.section-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 17px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.section-mark::before {
  left: 0;
  transform: rotate(-32deg);
}

.section-mark::after {
  right: 0;
  transform: rotate(32deg);
}

.production-window {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  background: var(--soft);
}

.production-window img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.window-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(246, 246, 244, 0.88), rgba(246, 246, 244, 0.96)),
    url("assets/product-images/White-1.png") center / 82% no-repeat;
}

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

.metric-grid div {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 10px;
  color: var(--white);
  background: var(--orange);
  text-align: center;
}

.metric-grid strong {
  font-size: 1.28rem;
  line-height: 1;
}

.metric-grid span {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.micro-copy {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.micro-copy span {
  position: relative;
  padding-left: 16px;
}

.micro-copy span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.micro-copy.compact {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.document-hero {
  padding-bottom: 28px;
}

.document-section {
  padding-top: 72px;
}

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

.document-grid-large {
  align-items: stretch;
}

.document-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28, 28, 26, 0.08);
}

.document-card > span {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 3px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.document-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.document-card .button {
  margin-top: 6px;
}

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

.category-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  border: 1px solid var(--line);
  background: #f4f4f2;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #ededeb;
}

.category-card div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.category-card a,
.need-grid button,
.need-grid a,
.text-button {
  display: inline-flex;
  justify-content: center;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.need-grid article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.need-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.need-grid article:hover img {
  transform: scale(1.04);
}

.need-grid div {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.need-grid button,
.need-grid a {
  margin-top: 10px;
  color: var(--white);
  background: var(--orange);
  padding: 8px 10px;
  border-radius: var(--radius);
}

.category-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

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

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.category-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 70px 0;
}

.category-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.category-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, var(--max));
  margin: -22px auto 0;
  padding: 0 clamp(18px, 3vw, 30px);
  position: relative;
  z-index: 2;
}

.category-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(28, 28, 26, 0.08);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.category-tabs a.is-active {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.category-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.category-summary article {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--light);
  text-align: center;
}

.category-summary strong {
  display: block;
  color: var(--orange-dark);
  font-size: 1.5rem;
}

.category-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.category-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px clamp(18px, 3vw, 30px);
}

.category-cta img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.category-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.uniform-banner {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 20px;
  color: var(--white);
  text-align: center;
}

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

.uniform-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.uniform-banner div {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
}

.uniform-banner p:not(.eyebrow) {
  margin: 14px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.about-main {
  grid-row: span 2;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stack img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.about-copy {
  padding: 24px;
  background: var(--light);
  border: 1px solid var(--line);
}

.about-copy ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.about-copy li,
.check-list li {
  position: relative;
  padding-left: 22px;
}

.about-copy li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  background: var(--orange);
  transform: rotate(45deg);
}

.advantage {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(246, 250, 250, 0.92), rgba(246, 250, 250, 0.96)),
    url("assets/product-images/Unisex-Polo-T-shirt-White.png") 12% center / 360px no-repeat;
}

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

.advantage-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.advantage-grid strong,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
}

.catalog {
  padding-bottom: 52px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(130px, 0.7fr));
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.search-field input,
label input,
label select,
label textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

label textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.search-field input:focus,
label input:focus,
label select:focus,
label textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 0, 0.16);
}

.filter-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-select {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-select select {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  padding: 0 12px;
  outline: none;
}

.filter-select select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 0, 0.16);
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.product-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28, 28, 26, 0.08);
}

.product-image {
  position: relative;
  height: 260px;
  background: #eeeeec;
  overflow: hidden;
}

.product-image a {
  display: block;
  height: 100%;
}

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

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 3px;
  color: var(--white);
  background: rgba(42, 42, 39, 0.86);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  grid-template-rows: minmax(48px, auto) auto minmax(64px, auto) auto auto auto;
  gap: 11px;
  padding: 18px;
}

.product-body h3 {
  min-height: 48px;
  font-size: 1.125rem;
}

.key-spec {
  margin: -3px 0 0;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

.product-meta,
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-meta {
  align-content: flex-start;
  min-height: 64px;
}

.product-option {
  display: grid;
  gap: 8px;
}

.option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.option-head strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  padding: 0 8px;
  color: #626260;
  background: #f2f2ef;
  font-size: 0.68rem;
  font-weight: 850;
}

.swatch {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.swatch.is-active {
  box-shadow: 0 0 0 2px var(--orange);
  transform: scale(1.08);
}

.size-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.size-field select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  padding: 0 10px;
  outline: none;
}

.size-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 0, 0.16);
}

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

.product-actions .qty-control {
  width: 116px;
}

.qty-control {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  min-height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qty-control button {
  border: 0;
  background: #f2f2ef;
  font-weight: 950;
}

.qty-control input {
  width: 100%;
  border: 0;
  text-align: center;
  font-weight: 900;
  outline: none;
}

.add-button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(242, 140, 0, 0.24);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.add-button:hover,
.add-button:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 13px 26px rgba(216, 111, 0, 0.28);
  transform: translateY(-1px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-detail-media {
  position: relative;
  border: 1px solid var(--line);
  background: var(--soft);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: top center;
}

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

.product-detail-copy h1 {
  max-width: 660px;
}

.product-lede {
  margin: 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.product-detail-tags {
  min-height: 0;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 4px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: var(--white);
}

.spec-table dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-table dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  text-transform: capitalize;
}

.product-detail-options {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--light);
}

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

.buyer-notes {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.buyer-notes span {
  position: relative;
  padding-left: 17px;
}

.buyer-notes span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.buyer-documents {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.buyer-documents h2 {
  font-size: 1.25rem;
}

.buyer-documents a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.buyer-documents span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

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

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

.related-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28, 28, 26, 0.08);
}

.related-card a {
  display: grid;
}

.related-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
}

.related-card span {
  justify-self: start;
  margin: 16px 16px 8px;
  padding: 5px 8px;
  border-radius: 3px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.66rem;
  font-weight: 950;
}

.related-card h3 {
  min-height: 48px;
  padding: 0 16px;
  font-size: 1.05rem;
}

.related-card p {
  margin: 8px 0 0;
  padding: 0 16px 18px;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.45;
}

.process {
  padding-top: 96px;
  padding-bottom: 96px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.process-grid article {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-grid span {
  margin-inline: auto;
}

.process-grid small {
  display: inline-flex;
  justify-content: center;
  margin: 10px auto 2px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(242, 140, 0, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.sustainability {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.sustainability img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.quote-section {
  padding-top: 38px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 32px;
  align-items: start;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--light);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 15px;
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 850;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.form-confirmation {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(17, 128, 88, 0.24);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  color: #0d6848;
  background: rgba(17, 128, 88, 0.08);
  font-weight: 850;
  line-height: 1.45;
}

.quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.quote-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.quote-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  font-size: 1.6rem;
}

.icon-button {
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.drawer-items {
  overflow: auto;
  padding: 16px;
  background: var(--light);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.cart-item p {
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-item-row,
.drawer-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-item .qty-control {
  width: 118px;
}

.remove-button {
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.drawer-summary {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed var(--line);
  color: var(--muted);
  background: var(--light);
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 30px;
  padding: 44px clamp(18px, 4vw, 52px);
  background: #f2f2f0;
}

.site-footer img {
  width: 120px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
}

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

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: #626260;
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer p {
  max-width: 280px;
  color: #626260;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.legal-main {
  background: var(--white);
}

.legal-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 88px clamp(18px, 3vw, 30px) 46px;
}

.legal-hero p {
  max-width: 680px;
  color: var(--muted);
}

.legal-content {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 30px) 96px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 1020px) {
  .topbar {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: center;
  }

  .nav-toggle {
    display: block;
  }

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

  .site-nav-left.is-open {
    display: flex;
  }

  .site-nav-left a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav-right {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .production-window,
  .catalog-tools,
  .quote-layout,
  .sustainability,
  .category-cta,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .need-grid,
  .product-grid,
  .advantage-grid,
  .process-grid,
  .category-summary,
  .related-grid,
  .document-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-row {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .topbar {
    font-size: 0.64rem;
  }

  .site-header {
    min-height: 58px;
    padding-inline: 12px;
  }

  .header-link {
    display: none;
  }

  .brand {
    width: 90px;
  }

  .brand img {
    width: 88px;
  }

  .hero {
    min-height: 590px;
    align-items: flex-end;
  }

  .hero-image {
    background:
      linear-gradient(0deg, rgba(14, 14, 13, 0.86) 0%, rgba(14, 14, 13, 0.34) 62%, rgba(14, 14, 13, 0.16) 100%),
      url("assets/product-images/Group-T-Shirt-Photoshoot.png") center top / cover no-repeat;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .button-row,
  .form-actions {
    display: grid;
  }

  .metric-grid,
  .category-grid,
  .need-grid,
  .about-grid,
  .about-stack,
  .product-grid,
  .advantage-grid,
  .process-grid,
  .category-summary,
  .related-grid,
  .document-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-hero {
    min-height: 330px;
  }

  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .category-tabs a {
    flex: 0 0 auto;
  }

  .section,
  .section-narrow,
  .advantage,
  .process {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .category-card {
    grid-template-rows: 240px 1fr;
  }

  .uniform-banner {
    min-height: 380px;
  }

  .about-main {
    min-height: 330px;
  }

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

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

  .product-detail-actions .qty-control {
    width: 100%;
  }

  .spec-table {
    grid-template-columns: 1fr;
  }

  .buyer-documents a {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    width: 50px;
    justify-content: center;
    padding: 0;
  }

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