:root {
  --ink: #172026;
  --muted: #657179;
  --line: #dce3e1;
  --paper: #fbfbf8;
  --white: #ffffff;
  --brand: #0f6b5d;
  --brand-dark: #0a473f;
  --accent: #c07a3c;
  --soft: #edf4f1;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.12);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --headline-size: clamp(1.05rem, 4.7vw, 3rem);
  --map-ocean: #f5f5f7;
  --map-land: #bec1c4;
  --map-border: #aeb2b6;
  --xiamen-pin: #000000;
  --xiamen-glow: rgba(0, 0, 0, 0.22);
  --xiamen-label: #000000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px calc(max(10vw, calc((100vw - 1440px) / 2)) + clamp(36px, 5vw, 64px));
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(29, 29, 31, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 42px;
  min-width: 0;
  background: transparent;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: var(--radius-sm);
  padding: 0 11px;
  background: #ffffff;
  color: #000000;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.brand-suffix {
  color: #ffffff;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  background: #000000;
  color: #ffffff;
  opacity: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: #1d1d1f;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-sm);
  background: transparent;
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
  background: #f7f7f4;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(8, 12, 14, 0.16), rgba(8, 12, 14, 0.42) 62%, rgba(8, 12, 14, 0.58)),
    linear-gradient(180deg, rgba(8, 12, 14, 0.2), rgba(8, 12, 14, 0.42));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 96px 20px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.25rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-content p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.44rem, 2.75vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-strip {
  position: relative;
  width: min(80%, 1440px);
  margin: clamp(28px, 4vw, 52px) auto 0;
  padding: clamp(42px, 5vw, 70px) clamp(22px, 3vw, 42px) clamp(28px, 3.5vw, 44px);
  border: 0;
  border-radius: var(--radius-lg);
  background: #f5f5f7;
}

.category-title {
  margin: 0 0 clamp(20px, 3vw, 34px);
  color: #1d1d1f;
  font-size: var(--headline-size);
  line-height: 1.05;
  text-align: center;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(72px, 1fr));
  gap: clamp(18px, 2.6vw, 46px);
  align-items: center;
}

.category-item {
  display: grid;
  grid-template-rows: 48px 24px;
  align-items: center;
  justify-items: center;
  gap: 10px;
  min-width: 94px;
  min-height: 82px;
  border-radius: var(--radius-sm);
  padding: 0 10px;
  color: #262626;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.category-item:hover,
.category-item.is-active {
  background: #f5f5f7;
  color: #000000;
  transform: translateY(-2px);
}

.category-item svg {
  width: clamp(42px, 4vw, 64px);
  height: clamp(42px, 4vw, 64px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.category-item span {
  font-size: clamp(0.76rem, 1vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0;
}

.location-section {
  --location-section-padding: clamp(34px, 5vw, 62px);
  width: min(80%, 1440px);
  margin: clamp(28px, 4vw, 52px) auto 0;
  display: grid;
  gap: clamp(26px, 4vw, 52px);
  overflow: hidden;
  padding: var(--location-section-padding);
  border: 0;
  border-radius: var(--radius-lg);
  background: #f5f5f7;
}

.map-panel {
  position: relative;
  overflow: hidden;
  margin-right: calc(var(--location-section-padding) * -1);
  margin-bottom: calc(var(--location-section-padding) * -1);
  margin-left: calc(var(--location-section-padding) * -1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--map-ocean);
  box-shadow: none;
}

.map-panel img {
  display: block;
  width: 100%;
  min-height: clamp(300px, 42vw, 520px);
  object-fit: cover;
}

.xiamen-pulse-dot {
  position: absolute;
  left: 76.4%;
  top: 51.1%;
  width: 29px;
  height: 29px;
  border-radius: var(--radius-pill);
  background: var(--xiamen-pin);
  box-shadow:
    0 0 0 12px var(--xiamen-glow),
    0 0 32px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: xiamenPulse 1.8s ease-in-out infinite;
}

.xiamen-map-label {
  position: absolute;
  left: 79%;
  top: 48.5%;
  border: 1px solid var(--xiamen-label);
  border-radius: var(--radius-pill);
  padding: 7px 12px;
  background: transparent;
  color: var(--xiamen-label);
  font-size: clamp(0.84rem, 1.25vw, 1.2rem);
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 2;
}

@keyframes xiamenPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.82);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.22);
  }
}

.location-copy h2 {
  margin: 0;
  font-size: var(--headline-size);
  line-height: 1.05;
  text-align: center;
}

.location-copy .eyebrow {
  color: var(--muted);
}

.location-points {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 18px auto 0;
  text-align: center;
}

.location-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.location-points strong {
  color: var(--ink);
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--brand);
  color: var(--white);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.stats-band {
  width: min(80%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  padding: 30px clamp(20px, 4vw, 54px);
  background: var(--white);
}

.stats-band strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.section {
  width: min(80%, 1440px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
}

.intro-section,
.markets {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.custom-content h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy,
.custom-content p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 32, 38, 0.06);
}

.product-image {
  min-height: 210px;
  background-image: url("assets/hero-bags.png");
  background-size: 185%;
  background-repeat: no-repeat;
}

.product-image-one {
  background-position: 68% 52%;
}

.product-image-two {
  background-position: 88% 42%;
}

.product-image-three {
  background-position: 54% 58%;
}

.product-image-four {
  background-position: 74% 70%;
}

.product-image-five {
  background-position: 42% 48%;
}

.product-image-six {
  background-position: 94% 68%;
}

.product-body {
  padding: 24px;
}

.product-body h3,
.factory-points h3,
.process-grid h3,
.material-panel h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.product-body p,
.factory-points p,
.process-grid p,
.material-panel dd {
  margin: 0;
  color: var(--muted);
}

.product-body span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.custom-section {
  width: min(80%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
}

.custom-content p {
  max-width: 720px;
  margin-top: 22px;
}

.capability-list,
.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.capability-list span,
.market-list span {
  border: 1px solid rgba(15, 107, 93, 0.22);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-weight: 750;
}

.material-panel {
  border-radius: var(--radius-md);
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.material-panel dl,
.material-panel div {
  margin: 0;
}

.material-panel div + div {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.material-panel dt {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 850;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  margin-top: 42px;
}

.factory-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.factory-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 67% center;
}

.factory-points {
  display: grid;
  gap: 20px;
}

.factory-points article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.process-band {
  width: min(80%, 1440px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
  color: var(--ink);
}

.process-band .section-heading {
  max-width: 820px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.process-grid div {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.factory-carousel-block {
  width: 100%;
  margin: clamp(28px, 4vw, 52px) 0 0;
  overflow: hidden;
  border-radius: 0;
  padding: clamp(42px, 6vw, 76px) 0 clamp(34px, 5vw, 68px);
  background: #ffffff;
}

.factory-carousel-heading {
  width: min(80%, 1440px);
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.factory-carousel-title {
  max-width: none;
  margin: 0;
  color: #1d1d1f;
  font-size: var(--headline-size);
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}

.factory-carousel {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.factory-carousel-viewport {
  width: 100vw;
  margin-left: 0;
  padding-top: 56px;
  padding-bottom: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.factory-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.factory-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  justify-content: flex-start;
  gap: 22px;
  padding-left: 0;
  padding-right: 48px;
  transform: translate3d(max(10vw, calc((100vw - 1440px) / 2)), 0, 0);
}

.factory-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.factory-carousel-viewport.is-dragging .factory-carousel-track {
  pointer-events: none;
}

.factory-carousel-card {
  position: relative;
  flex: 0 0 clamp(360px, 29vw, 430px);
  height: auto;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: #1d1d1f;
  transform: translate3d(0, 0, 0);
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  will-change: transform;
}

.factory-carousel-card::before {
  display: none;
}

.factory-carousel-card::after {
  display: none;
}

.factory-carousel-card img {
  position: static;
  width: 100%;
  aspect-ratio: 0.56 / 1;
  height: auto;
  overflow: hidden;
  border-radius: 28px;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .factory-carousel-card {
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .factory-carousel-card:hover {
    z-index: 2;
    transform: translate3d(0, -4px, 0);
  }

  .factory-carousel-card:hover img {
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
    transform: translate3d(0, 0, 0) scale(1.035);
  }
}

.factory-card-body {
  display: flex;
  height: auto;
  flex-direction: column;
  padding: 24px 0 0;
}

.factory-card-brand {
  display: none;
}

.factory-card-brand::before {
  display: none;
}

.factory-card-body h3 {
  max-width: 820px;
  margin: 0 0 10px;
  color: #1d1d1f;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.factory-card-body p {
  max-width: 820px;
  margin: 0;
  color: #86868b;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.22;
}

.factory-card-status {
  display: block;
  margin-top: 18px;
  color: #86868b;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.2;
}

.factory-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(80%, 1440px);
  margin: 22px auto 0;
}

.factory-carousel-controls {
  display: flex;
  align-items: center;
}

.factory-carousel-controls {
  gap: 12px;
}

.factory-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #e2e2e7;
  color: #1d1d1f;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease;
}

.factory-carousel-button:hover {
  background: #d2d2d7;
}

.factory-carousel-button:disabled {
  color: #86868b;
  cursor: default;
  opacity: 0.42;
}

.factory-carousel-button:disabled:hover {
  background: #e2e2e7;
}

@media (prefers-reduced-motion: reduce) {
  .factory-carousel-viewport {
    scroll-behavior: auto;
  }

  .factory-carousel-card,
  .factory-carousel-card img {
    transition: none;
  }
}

.contact-section {
  width: min(80%, 1440px);
  margin: clamp(28px, 4vw, 52px) auto 0;
  padding: clamp(36px, 5vw, 64px);
  border: 0;
  border-radius: var(--radius-lg);
  background: #f5f5f7;
  text-align: center;
}

.contact-copy {
  max-width: 900px;
  margin: 0 auto;
}

.contact-copy p {
  margin-top: 22px;
  font-size: 0.95rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 60px;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 900;
}

.contact-copy h2 {
  font-size: var(--headline-size);
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #86868b;
  outline: 3px solid rgba(134, 134, 139, 0.18);
}

.site-footer {
  width: min(80%, 1440px);
  margin: clamp(28px, 4vw, 52px) auto 0;
  padding: 18px 0 20px;
  color: #6e6e73;
  background: var(--white);
  font-size: 0.88rem;
}

.footer-inner {
  display: block;
  border-top: 1px solid #d2d2d7;
  padding-top: 18px;
  text-align: left;
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.36);
  }

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

  .category-row {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    row-gap: 24px;
  }

  .intro-section,
  .custom-section,
  .factory-layout,
  .markets,
  .location-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .category-strip,
  .location-section,
  .stats-band,
  .section,
  .custom-section,
  .process-band,
  .contact-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .factory-carousel-track {
    gap: 12px;
    padding-left: 0;
    padding-right: 16px;
  }

  .factory-carousel-viewport {
    width: 100vw;
    margin-left: 0;
  }

  .factory-carousel-track {
    transform: translate3d(16px, 0, 0);
  }

  .factory-carousel-card {
    flex-basis: calc(100vw - 32px);
    height: auto;
    border-radius: 0;
  }

  .factory-carousel-footer {
    width: calc(100% - 32px);
    margin-top: 18px;
  }

  .location-section {
    --location-section-padding: 20px;
    padding: 28px var(--location-section-padding);
  }

  .category-strip {
    padding: 34px 18px 24px;
  }

  .factory-carousel-block {
    width: 100%;
    padding: 34px 0 30px;
    background: #ffffff;
  }

  .category-title {
    width: calc(100% - 32px);
  }

  .factory-carousel-title {
    white-space: normal;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .brand {
    width: auto;
    height: 38px;
  }

  .brand-name,
  .brand-suffix {
    font-size: 1rem;
  }

  .brand-name {
    min-height: 29px;
    border-radius: var(--radius-sm);
    padding: 0 9px;
  }

  .site-nav {
    top: 66px;
    right: 16px;
    left: 16px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero img {
    object-position: 60% center;
  }

  .button {
    width: 100%;
  }

  .stats-band,
  .category-row,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 190px;
  }

  .process-grid div {
    min-height: auto;
  }

  .site-footer {
    font-size: 0.82rem;
  }

  .site-footer p {
    white-space: normal;
  }
}
