@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

:root {
  color-scheme: light;
  font-family: 'DejaVu Sans', Arial, sans-serif;
  --color-bg: #e8f3fb;
  --color-surface: #ffffff;
  --color-primary: #1f68b3;
  --color-primary-strong: #1f68b3;
  --color-secondary: #00d084;
  --color-dark: #2d3940;
  --color-muted: #556173;
  --color-border: #dde7ef;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(120deg, #c5e1f5 0%, #dfedf8 45%, #f3f8fc 100%);
  background-attachment: fixed;
  color: var(--color-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DejaVu Sans', Arial, sans-serif;
  text-transform: capitalize !important;
}

main,
.hero,
#services-hero,
.section,
.catalog-section,
.services-grid-section,
.page-title-section,
.product-detail {
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: none;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0;
}

.topbar-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.15rem 0.35rem;
}

.topbar-link:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 35, 65, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-primary);
}

.brand::before {
  content: '';
  display: block;
  width: 230px;
  height: 78px;
  background: url('images/supplier-sanigene.png') center / contain no-repeat;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ff9500;
}

.logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-name {
  font-family: 'Alex Brush', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #003da5;
  line-height: 1;
}

.tagline {
  font-family: 'DejaVu Sans', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #003da5;
  line-height: 1;
  margin-top: -0.3rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
}

.footer-nav {
  display: none;
}

.site-nav a,
.footer-nav a {
  color: var(--color-dark);
  font-weight: 500;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-caret {
  font-size: 1.25em;
  transition: transform 0.2s ease;
  line-height: 1;
}

.nav-item.has-mega:hover .nav-caret,
.nav-item.has-mega:focus-within .nav-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(13, 35, 65, 0.08);
  box-shadow: 0 20px 40px -18px rgba(13, 35, 65, 0.25);
  border-radius: 18px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 50;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  height: 1.25rem;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mega-list a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.mega-list a:hover {
  background: rgba(0, 107, 198, 0.08);
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--color-dark);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 107, 198, 0.16);
}

.button-secondary {
  background: var(--color-secondary);
  color: #fff;
}

.button-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(0, 107, 198, 0.18);
}

.hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#home {
  padding-bottom: 5rem;
  overflow: visible;
}

#home .hero-bubble-layer {
  overflow: visible;
}

.hero-bubble-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bubble {
  position: absolute;
  left: var(--bubble-left);
  top: var(--bubble-top);
  width: var(--bubble-size);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  opacity: 0.68;
  background:
    radial-gradient(ellipse at 29% 22%, rgba(255, 255, 255, 0.96) 0 4%, rgba(255, 255, 255, 0.42) 5% 9%, transparent 12%),
    radial-gradient(ellipse at 68% 78%, rgba(255, 255, 255, 0.35) 0 3%, transparent 11%),
    radial-gradient(circle at 48% 43%, rgba(255, 255, 255, 0.06) 0 55%, rgba(116, 220, 255, 0.15) 70%, rgba(61, 132, 255, 0.35) 86%, rgba(255, 255, 255, 0.68) 97%, transparent 100%),
    conic-gradient(from 205deg, rgba(80, 184, 255, 0.32), rgba(255, 137, 224, 0.18), rgba(255, 245, 150, 0.2), rgba(96, 220, 255, 0.3), rgba(80, 184, 255, 0.32));
  box-shadow:
    inset 2px 2px 5px rgba(255, 255, 255, 0.62),
    inset -3px -4px 8px rgba(40, 129, 224, 0.18),
    0 5px 16px rgba(0, 89, 180, 0.12);
  backdrop-filter: blur(1.2px) saturate(1.25);
  -webkit-backdrop-filter: blur(1.2px) saturate(1.25);
  animation: heroBubbleFloat 8s ease-in-out var(--bubble-delay) infinite;
}

.hero-bubble::after {
  content: '';
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  transform: rotate(-22deg);
}

.hero-bubble-2 { animation-duration: 10s; }
.hero-bubble-3 { animation-duration: 12s; }

@keyframes heroBubbleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -18px, 0) scale(1.05); }
}

.falling-droplet {
  z-index: 0;
  opacity: 0.78;
}

#services-hero {
  position: relative;
}

#services-hero::before {
  display: none;
}

.hero::before {
  display: none;
}

@keyframes dropFall {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(500px);
    opacity: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero h1,
.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.6vw, 4.4rem);
  line-height: 1.02;
}

.hero-text,
.section p,
.about-quote p {
  max-width: 58rem;
  margin-top: 1.25rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-stats div {
  background: #fff;
  border: 1px solid rgba(93, 138, 216, 0.12);
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.hero-panel {
  position: relative;
}

.panel-card {
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(12, 78, 180, 0.08);
  box-shadow: 0 38px 80px rgba(15, 55, 103, 0.08);
  padding: 2rem;
}

.panel-label {
  display: inline-flex;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.section {
  padding: 4rem 0;
}

.section.services {
  padding-top: 0;
}

.services .service-grid {
  margin-top: 0;
}

.section-header {
  max-width: 58rem;
}

.impact .section-header {
  margin-inline: auto;
  text-align: center;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
  color: #fff;
}

.page-banner--chemicals {
  background: linear-gradient(135deg, #1f68b3 0%, #1581c4 45%, #00aab1 100%);
}

.page-banner--image {
  padding: 0;
  background: #ffffff;
  color: inherit;
}

.page-banner--image::before {
  display: none;
}

.page-banner--image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1191 / 299;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}

.page-banner--image picture {
  display: block;
  width: 100%;
}

.banner-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-section {
  padding: 3rem 0 4rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bubble { animation: none; }
  .falling-droplet { display: none; }
}

.catalogue-viewer-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.catalogue-viewer-header h2 {
  margin: 0;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 7rem;
  max-width: 980px;
  margin: 3rem auto 0;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.catalogue-card:hover {
  transform: translateY(-5px);
}

.catalogue-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 360px;
  object-fit: contain;
  box-shadow: 0 14px 30px -20px rgba(15, 55, 103, 0.38);
}

.catalogue-card h3 {
  margin: 0.8rem 0 0;
  color: #003da5;
  font-family: 'DejaVu Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
}

@media (max-width: 640px) {
  .catalogue-viewer-header {
    align-items: stretch;
    flex-direction: column;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }

  .catalogue-card img {
    height: 320px;
  }
}

/* Smooth, lightweight motion for touch devices */
@media (max-width: 720px) {
  html {
    scroll-behavior: smooth;
  }

  .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
    transition:
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  }

  .scroll-reveal.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .catalogue-card,
  .gift-category-group li a,
  .range-card,
  .product-list-item,
  .dispenser-product-card,
  .ppe-icon-card,
  .ppe-product-card,
  .button {
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 160ms ease,
      box-shadow 200ms ease,
      background-color 200ms ease;
  }

  .catalogue-card:active,
  .gift-category-group li a:active,
  .range-card:active,
  .product-list-item:active,
  .dispenser-product-card:active,
  .ppe-icon-card:active,
  .ppe-product-card:active,
  .button:active {
    transform: scale(0.975);
  }

  .page-banner img,
  .range-banner img,
  .catalogue-card img,
  .gift-category-group img {
    animation: mobileImageReveal 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes mobileImageReveal {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px -20px rgba(15, 55, 103, 0.15);
}

.catalog-table + .catalog-table {
  margin-top: 2.5rem;
}

.catalog-table thead th {
  background: #d6e8f5;
  color: var(--color-dark);
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
}

.catalog-table tbody td {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.5;
}

.catalog-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: 30%;
}

.catalog-table tbody td:last-child {
  color: var(--color-muted);
}

.catalog-table tbody tr:nth-child(even) td {
  background: rgba(214, 232, 245, 0.18);
}

@media (max-width: 720px) {
  .catalog-table {
    font-size: 0.9rem;
  }

  .catalog-table thead th,
  .catalog-table tbody td {
    padding: 0.75rem 1rem;
  }

  .catalog-table tbody td:first-child {
    width: auto;
    white-space: normal;
  }
}

.catalog-group-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--color-primary);
  margin: 3rem 0 1.75rem;
}

.catalog-group-title:first-child {
  margin-top: 0;
}

.page-title-section {
  padding: 2.5rem 0 1rem;
}

.page-title-section.about-page-title {
  padding: 4rem 0 0;
}

.about-page-title + .about {
  padding-top: 0.75rem;
}

.about-page-title + .about .about-grid > div > p:first-child {
  margin-top: 0;
}

.page-title-section.contact-page-title {
  padding: 4rem 0 0;
}

.contact-page-title + .contact {
  padding-top: 0.75rem;
}

.contact-page-title + .contact .contact-grid > div > p:first-child {
  margin-top: 0;
}

.page-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border);
  margin: 0;
}

.range-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #f3f5f8;
  border: 1px dashed #c6cfdb;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.range-banner-placeholder {
  color: #98a2b3;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 1rem;
}

.range-banner--image {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #082f5c;
}

.range-banner--image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.range-card,
.range-card:link,
.range-card:visited {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px -20px rgba(15, 55, 103, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.range-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(15, 55, 103, 0.28);
  border-color: rgba(31, 104, 179, 0.25);
}

.range-card-media {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f8;
  border: 1px dashed #c6cfdb;
  border-radius: 8px;
  overflow: hidden;
}

.range-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.range-card-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin: 0;
  text-align: center;
}

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

.gift-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.gift-category-group {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.section .gift-category-group h2 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 61, 165, 0.16);
  color: #003da5;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gift-category-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.gift-category-group:first-child ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gift-category-group li {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: rgba(217, 236, 251, 0.4);
  color: var(--color-dark);
}

.gift-category-group li:has(a) {
  padding: 0;
}

.gift-category-group li a {
  display: block;
  padding: 1rem 1.15rem;
  color: var(--color-dark);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gift-category-group li a img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.gift-category-group li a span {
  display: block;
}

.gift-category-group li a:hover {
  color: var(--color-primary);
  background: rgba(217, 236, 251, 0.85);
  transform: translateX(4px);
}

#clothing-catalogue > .container,
#cleaning-janitorial > .container {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

#clothing-catalogue .catalogue-viewer-header,
#cleaning-janitorial .catalogue-viewer-header {
  margin-bottom: 1.25rem;
}

#clothing-catalogue .section-eyebrow,
#cleaning-janitorial .section-eyebrow {
  display: block;
  margin: 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 61, 165, 0.16);
  color: #003da5;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

#clothing-catalogue .catalogue-grid,
#cleaning-janitorial .catalogue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: none;
  margin: 0;
}

#clothing-catalogue .catalogue-card,
#cleaning-janitorial .catalogue-card {
  align-items: stretch;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  background: rgba(217, 236, 251, 0.4);
  text-align: left;
}

#clothing-catalogue .catalogue-card:hover,
#cleaning-janitorial .catalogue-card:hover {
  color: var(--color-primary);
  background: rgba(217, 236, 251, 0.85);
  transform: translateX(4px);
}

#clothing-catalogue .catalogue-card img,
#cleaning-janitorial .catalogue-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: none;
}

#clothing-catalogue .catalogue-card h3,
#cleaning-janitorial .catalogue-card h3 {
  margin: 1rem 0 0;
  color: var(--color-dark);
  font-family: 'DejaVu Sans', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 640px) {
  #clothing-catalogue > .container,
  #cleaning-janitorial > .container {
    padding: 1.25rem;
  }

  #clothing-catalogue .catalogue-grid,
  #cleaning-janitorial .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  #clothing-catalogue .catalogue-card,
  #cleaning-janitorial .catalogue-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 0.7rem;
  }

  #clothing-catalogue .catalogue-card img,
  #cleaning-janitorial .catalogue-card img {
    width: 82px;
    height: 104px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  #clothing-catalogue .catalogue-card h3,
  #cleaning-janitorial .catalogue-card h3 {
    margin: 0;
    font-size: 1rem;
  }
}

.refreshment-group {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.section .refreshment-group h2 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 61, 165, 0.16);
  color: #003da5;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.refreshment-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.refreshment-group li {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: rgba(217, 236, 251, 0.4);
  color: var(--color-dark);
}

@media (max-width: 640px) {
  .refreshments-grid { grid-template-columns: 1fr; }
  .gift-category-grid { grid-template-columns: 1fr; }
  .gift-category-group:first-child ul { grid-template-columns: 1fr; }
}

.dispenser-range-visual {
  position: relative;
  gap: 12px;
  align-items: flex-end;
  background: #f8fafc;
  border: 0;
}

.dispenser-range-visual span {
  display: block;
  width: 15%;
  height: 42%;
  border-radius: 10px 10px 4px 4px;
  background: var(--dispenser-finish);
  border: 1px solid rgba(20, 35, 50, 0.16);
  box-shadow: 0 10px 15px -12px rgba(15, 35, 55, 0.65);
}

.dispenser-range-visual span:nth-child(2) { height: 67%; width: 18%; }
.dispenser-range-visual span:nth-child(3) { height: 50%; width: 22%; border-radius: 14px 14px 5px 5px; }
.dispenser-range-visual span:nth-child(4) { height: 80%; width: 17%; }
.dispenser-range-visual span:nth-child(5) { height: 36%; width: 13%; }

.dispenser-range-photo {
  min-height: 0;
  aspect-ratio: 2.25 / 1;
  padding: 0;
  border: 0;
  background: #ffffff;
}

.dispenser-range-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.eco-range-photo img {
  object-fit: contain;
}

.range-card:hover .eco-range-photo img {
  transform: none;
}

.range-card:hover .dispenser-range-photo img {
  transform: scale(1.025);
}

.finish-white { --dispenser-finish: linear-gradient(145deg, #ffffff, #dfe6ea); }
.finish-silver { --dispenser-finish: linear-gradient(145deg, #d9e0e3, #727f85); }
.finish-black { --dispenser-finish: linear-gradient(145deg, #303841, #070b10); }
.finish-steel { --dispenser-finish: linear-gradient(145deg, #eef2f3, #778187); }
.finish-black-steel { --dispenser-finish: linear-gradient(145deg, #212b35, #020509); }
.finish-bronze { --dispenser-finish: linear-gradient(145deg, #c48870, #6d372b); }

.dispenser-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.dispenser-category-list {
  display: block;
}

.dispenser-category-group + .dispenser-category-group {
  margin-top: 3rem;
}

.section .dispenser-category-title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(0, 61, 165, 0.14);
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.dispenser-product-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dispenser-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -24px rgba(15, 55, 103, 0.35);
}

.dispenser-product-visual,
.dispenser-detail-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 220px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #f6f8fa;
}

.dispenser-product-visual::before,
.dispenser-detail-visual::before {
  content: '';
  display: block;
  width: 42%;
  height: 150px;
  border-radius: 22px 22px 8px 8px;
  background: var(--dispenser-finish);
  border: 1px solid rgba(20, 35, 50, 0.16);
  box-shadow: 0 16px 24px -18px rgba(10, 25, 40, 0.65);
}

.dispenser-detail-visual { min-height: 420px; }
.dispenser-detail-visual::before { height: 280px; max-width: 210px; }
.dispenser-product-card h2 { margin: 0; font-size: 1.05rem; color: #003da5; }
.dispenser-product-sku { margin-bottom: 0.35rem; color: #72a181; font-size: 0.78rem; font-weight: 700; }
.dispenser-product-visual.has-product-image::before,
.dispenser-detail-visual.has-product-image::before { display: none; }
.dispenser-product-visual.has-product-image {
  align-items: center;
  justify-content: center;
}
.dispenser-product-visual.has-product-image img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center center;
}
.dispenser-detail-visual.has-product-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.dispenser-detail-copy .product-detail-code { color: #003da5; font-weight: 700; }

@media (max-width: 820px) {
  .dispenser-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .dispenser-products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .range-grid {
    grid-template-columns: 1fr;
  }

  #washroom-dispensers {
    text-align: center;
  }

  #washroom-dispensers .range-grid {
    justify-items: center;
    width: 100%;
  }

  #washroom-dispensers .range-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }

  #washroom-dispensers .range-card-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
  }

  #washroom-dispensers .dispenser-range-photo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    object-position: center center;
  }

  #washroom-dispensers .range-card-title {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-list-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 10px 24px -20px rgba(15, 55, 103, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.product-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -22px rgba(15, 55, 103, 0.28);
  border-color: rgba(31, 104, 179, 0.25);
}

.product-thumb {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  background: transparent;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-thumb:has(.thumb-placeholder) {
  background: #f3f5f8;
  border: 1px dashed #c6cfdb;
}

.thumb-placeholder {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #98a2b3;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-code {
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.product-name {
  color: var(--color-dark);
  font-size: 1.05rem;
}

#cleaning-janitorial .product-list-item {
  min-height: 130px;
  padding: 2rem 2.25rem;
  justify-content: space-between;
  cursor: pointer;
}

#cleaning-janitorial a.product-list-item::after {
  content: "View catalogue ↗";
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#cleaning-janitorial a.product-list-item:hover::after,
#cleaning-janitorial a.product-list-item:focus-visible::after {
  content: attr(href);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

#cleaning-janitorial a.product-list-item:hover,
#cleaning-janitorial a.product-list-item:focus-visible {
  transform: translateY(-4px);
  background: #f7fbff;
  border-color: var(--color-primary);
  box-shadow: 0 18px 36px -18px rgba(15, 55, 103, 0.38);
}

#cleaning-janitorial a.product-list-item:focus-visible {
  outline: 3px solid rgba(31, 104, 179, 0.3);
  outline-offset: 3px;
}

#cleaning-janitorial .product-name {
  font-size: 1.35rem;
  line-height: 1.4;
}

#cleaning-janitorial .janitorial-category-grid .range-card {
  background: #ffffff;
}

#cleaning-janitorial .janitorial-category-grid .range-card-media {
  height: 300px;
  background: #ffffff;
  border: 1px solid rgba(31, 104, 179, 0.1);
}

#cleaning-janitorial .janitorial-category-grid .range-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#cleaning-janitorial .janitorial-category-grid .range-card-title {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .product-list-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .product-thumb {
    width: 100%;
    height: 160px;
    flex-basis: auto;
  }

  #cleaning-janitorial .product-list-item {
    min-height: 110px;
    padding: 1.5rem;
  }

  #cleaning-janitorial .product-name {
    font-size: 1.2rem;
  }
}

a.product-list-item,
a.product-list-item:link,
a.product-list-item:visited {
  color: inherit;
  text-decoration: none;
}

/* Homepage banner slideshow */
.banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1191 / 299;
  overflow: hidden;
  background: #082f5c;
}

.banner-slides,
.banner-slide {
  position: absolute;
  inset: 0;
}

.banner-slide {
  display: block;
  opacity: 0;
  visibility: hidden;
  animation: bannerAutoplay 32s infinite;
}

.banner-slide:first-child {
  opacity: 1;
  visibility: visible;
}

.banner-slide:nth-child(1) { animation-delay: 0s; }
.banner-slide:nth-child(2) { animation-delay: 4s; }
.banner-slide:nth-child(3) { animation-delay: 8s; }
.banner-slide:nth-child(4) { animation-delay: 12s; }
.banner-slide:nth-child(5) { animation-delay: 16s; }
.banner-slide:nth-child(6) { animation-delay: 20s; }
.banner-slide:nth-child(7) { animation-delay: 24s; }
.banner-slide:nth-child(8) { animation-delay: 28s; }

@keyframes bannerAutoplay {
  0%, 10% {
    opacity: 1;
    visibility: visible;
  }
  12.5%, 100% {
    opacity: 0;
    visibility: hidden;
  }
}

.banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Keep banners wide on desktop, but give the artwork more vertical room on tablets. */
@media (min-width: 721px) and (max-width: 1024px) {
  .page-banner--image,
  .banner-slider {
    aspect-ratio: 3 / 1;
  }

  .page-banner--image img,
  .banner-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.product-detail {
  padding: 2.5rem 0 5rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.product-detail-media {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  box-shadow: 0 18px 40px -28px rgba(15, 55, 103, 0.2);
}

.product-detail-media img {
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.product-detail-placeholder {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f8;
  border: 1px dashed #c6cfdb;
  border-radius: 8px;
  color: #98a2b3;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.product-badge--hot { background: #2bb673; }

.product-detail-title {
  color: var(--color-primary);
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.product-detail-code {
  font-size: 0.95rem;
  color: var(--color-dark);
  margin: 0 0 1rem;
  letter-spacing: 0.03em;
}

.product-detail-desc {
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.product-detail-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.product-detail-features li::before {
  content: '–';
  display: inline-block;
  margin-right: 0.6rem;
  color: var(--color-primary);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 820px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-title {
    font-size: 1.3rem;
  }
}

.page-banner::before {
  display: none;
}

.page-banner-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-banner-copy {
  max-width: 36rem;
}

.page-banner-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0 0 1rem;
}

.page-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.page-banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  opacity: 0.92;
}

.page-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-banner .button-primary {
  background: #fff;
  color: var(--color-primary);
}

.page-banner .button-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.page-banner .button-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.page-banner .button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-banner-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.22));
}

@media (max-width: 980px) {
  .page-banner {
    padding: 3rem 0 3.5rem;
  }

  .page-banner-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .page-banner-copy {
    margin: 0 auto;
  }

  .page-banner-actions {
    justify-content: center;
  }

  .page-banner-visual {
    order: -1;
  }

  .page-banner-visual svg {
    max-width: 200px;
  }
}

.service-grid,
.impact-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card,
.impact-card,
.product-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 98, 159, 0.08);
  min-height: 230px;
}

.impact-card {
  color: inherit;
  text-decoration: none;
}

.impact-card:focus-visible {
  outline: 3px solid rgba(31, 104, 179, 0.35);
  outline-offset: 3px;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.category-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(0, 107, 198, 0.08);
  color: var(--color-dark);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-row a:hover {
  transform: translateY(-1px);
  background: rgba(0, 107, 198, 0.16);
}

.product-card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.product-card li {
  margin-bottom: 0.4rem;
}

.service-icon {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: #173552;
  overflow: hidden;
  border: 1px solid rgba(71, 145, 211, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 29% 22%, rgba(255, 255, 255, 0.98) 0 5%, rgba(255, 255, 255, 0.5) 6% 11%, transparent 14%),
    radial-gradient(circle at 48% 43%, rgba(255, 255, 255, 0.72) 0 52%, rgba(143, 211, 255, 0.2) 70%, rgba(63, 137, 211, 0.3) 88%, rgba(255, 255, 255, 0.86) 98%);
  box-shadow:
    inset 2px 2px 5px rgba(255, 255, 255, 0.86),
    inset -3px -4px 8px rgba(40, 129, 224, 0.18),
    0 5px 14px rgba(0, 89, 180, 0.12);
}

.service-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.impact-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
}

.service-card h3 {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.impact-logo {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(31, 104, 179, 0.05) 0%, rgba(31, 104, 179, 0.02) 100%);
  border-radius: 16px;
  padding: 0.75rem;
}

.impact-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
}

.supplier-section {
  padding: 5rem 0;
  overflow: hidden;
  background: transparent;
}

.supplier-section-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.supplier-section-heading span {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.supplier-section-heading h2 {
  margin: 0.75rem 0 0;
  color: var(--color-dark);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.supplier-logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.supplier-logo-slider::before,
.supplier-logo-slider::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  width: min(9vw, 150px);
  height: 100%;
  pointer-events: none;
}

.supplier-logo-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(202, 228, 247, 0.95), transparent);
}

.supplier-logo-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(239, 247, 252, 0.95), transparent);
}

.supplier-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: supplierLogoScroll 35s linear infinite;
  will-change: transform;
}

.supplier-logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.supplier-logo-slider:hover .supplier-logo-track {
  animation-play-state: paused;
}

.supplier-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 120px;
  margin: 1rem;
  border: 1px solid rgba(31, 104, 179, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(15, 55, 103, 0.08);
  color: #536579;
}

.supplier-logo img {
  display: block;
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}

@keyframes supplierLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .supplier-logo-track { animation: none; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--color-muted);
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.about-quote {
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0, 107, 198, 0.12), #ffffff 58%);
  border: 1px solid rgba(0, 107, 198, 0.16);
}

.about-quote blockquote {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-info div {
  border-radius: 20px;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(0, 107, 198, 0.08);
}

.contact-info strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-dark);
}

.contact-info a,
.contact-info span {
  color: var(--color-muted);
}

.contact-social {
  margin-top: 2rem;
  text-align: center;
}

.contact-social h2 {
  margin: 0 0 1rem;
  color: var(--color-dark);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.contact-social-links {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}

.contact-social-links a {
  display: inline-flex;
  min-width: 76px;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: #1f68b3;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-social-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid #1f68b3;
  border-radius: 50%;
  background: #fff;
  color: #1f68b3;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px -16px rgba(31, 104, 179, 0.8);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  color: #003da5;
  transform: translateY(-3px);
}

.contact-social-links a:hover .contact-social-icon,
.contact-social-links a:focus-visible .contact-social-icon {
  background: #1f68b3;
  color: #fff;
  box-shadow: 0 14px 26px -14px rgba(31, 104, 179, 0.75);
}

.contact-social-links a:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(31, 104, 179, 0.35);
  outline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 34, 75, 0.08);
  border-radius: 28px;
  padding: 2rem;
}

.contact-form label {
  display: grid;
  font-weight: 600;
  gap: 0.75rem;
  color: var(--color-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(34, 67, 106, 0.12);
  border-radius: 16px;
  background: #fbfcff;
  padding: 1rem 1.1rem;
  color: var(--color-dark);
}

.site-footer {
  border-top: 1px solid rgba(13, 35, 65, 0.08);
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--color-muted);
  width: 100%;
  text-align: center;
}

.map-wrapper {
  margin-top: 1.75rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(15, 45, 90, 0.35);
  border: 1px solid rgba(34, 67, 106, 0.08);
  background: #fff;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 1200px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .service-grid,
  .impact-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 35, 65, 0.08);
  }

  .menu-icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
  }

  .menu-icon span,
  .menu-icon::before,
  .menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--color-dark);
  }

  .menu-icon span {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-icon::before {
    top: 0;
  }

  .menu-icon::after {
    bottom: 0;
  }

  .menu-toggle.open .menu-icon span {
    background: transparent;
  }

  .menu-toggle.open .menu-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .menu-toggle.open .menu-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

}

.header-cta {
  display: none;
}

/* Services Grid Styles */
.services-grid-section {
  padding: 4rem 0;
  background: transparent;
}

.ppe-categories {
  background: transparent;
}

.ppe-section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.ppe-section-header > p:last-child {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.ppe-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.35rem 0.8rem;
}

.ppe-icon-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  padding: 0.6rem 0.25rem 0.75rem;
  text-align: center;
  background: #ffffff;
  border: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ppe-icon-card:focus-visible {
  outline: 3px solid rgba(0, 107, 198, 0.3);
  outline-offset: 4px;
}

.ppe-icon-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 107, 198, 0.05);
  box-shadow: none;
}

.ppe-icon-card img {
  width: min(100%, 125px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: none;
}

.ppe-icon-card--blue img {
  filter: none;
}

.ppe-icon-card h3 {
  margin: 0.45rem 0 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.ppe-icon-card--blue h3 {
  color: var(--color-primary);
}

.ppe-products {
  margin-top: 5rem;
}

.ppe-products-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.ppe-products-heading > p:last-child {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.ppe-product-group + .ppe-product-group {
  margin-top: 3.5rem;
}

.section .ppe-product-group > h3 {
  margin: 0 0 1.4rem;
  padding-bottom: 0.7rem;
  color: var(--color-primary);
  font-size: 1.35rem;
  border-bottom: 2px solid rgba(0, 107, 198, 0.14);
}

.ppe-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.ppe-product-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(0, 107, 198, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px -26px rgba(15, 55, 103, 0.45);
}

.ppe-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -24px rgba(15, 55, 103, 0.35);
}

.ppe-product-image {
  display: grid;
  place-items: center;
  height: 190px;
  padding: 0.6rem;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, #f8fbfd, #fff);
}

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

.section .ppe-product-card h4 {
  margin: 0.9rem 0 0;
  color: var(--color-dark);
  font-size: 0.92rem;
  line-height: 1.4;
}

.ppe-product-card h4 small {
  display: inline;
  margin-left: 0.35rem;
  color: var(--color-muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ppe-category-title .section-eyebrow {
  margin: 1.25rem 0 0.7rem;
}

.ppe-back-link {
  display: inline-flex;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.ppe-category-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.ppe-category-product-card {
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid rgba(0, 107, 198, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px -32px rgba(15, 55, 103, 0.5);
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(31, 104, 179, 0.3);
  box-shadow: 0 22px 42px -26px rgba(15, 55, 103, 0.42);
}

.service-card:focus-visible {
  outline: 3px solid rgba(31, 104, 179, 0.35);
  outline-offset: 3px;
}

.ppe-category-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
  padding: 0.75rem;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.ppe-category-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.ppe-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(0, 107, 198, 0.28);
  border-radius: 12px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.ppe-category-product-grid--road-safety {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.ppe-category-product-grid--road-safety .ppe-category-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ppe-category-product-grid--road-safety .ppe-category-product-image {
  height: 310px;
  padding: 0.5rem;
}

.ppe-category-product-grid--road-safety .ppe-category-product-image img {
  width: 96%;
  height: 96%;
  object-position: 50% 50%;
  clip-path: inset(0 0 18% 0);
  transform: translateY(9%) scale(1.12);
  filter: contrast(1.12) saturate(1.06);
  image-rendering: -webkit-optimize-contrast;
}

.ppe-category-product-grid--road-safety h2 {
  width: 100%;
}

.section .ppe-category-product-card h2 {
  margin: 1rem 0 0;
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.ppe-category-product-card h2 small {
  display: block;
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: normal;
}

.ppe-category-product-card h2 small strong {
  color: var(--color-dark);
}

.ppe-card-code {
  margin: 0.65rem 0 0;
  color: #72a181;
  font-size: 0.78rem;
  font-weight: 700;
}

.ppe-card-variants {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.ppe-card-description {
  margin: 0.55rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ppe-technical-spec {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dce6f0;
  text-align: left;
}

.section .ppe-technical-spec h3 {
  margin: 0 0 0.7rem;
  color: #174f91;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ppe-technical-spec ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #536579;
}

.ppe-technical-spec li + li {
  margin-top: 0.45rem;
}

.ppe-product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ppe-view-details {
  display: block;
  width: fit-content;
  margin: 1rem auto 0;
  color: #1769b0;
  font-size: 0.82rem;
  font-weight: 700;
}

.ppe-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.ppe-product-detail-image {
  overflow: hidden;
  border: 1px solid #e2eaf2;
  border-radius: 22px;
  background: #fff;
}

.ppe-product-detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.ppe-product-detail-copy h1 {
  margin: 0 0 1rem;
}

.ppe-product-size {
  margin-bottom: 1.6rem;
  color: #536579;
}

.ppe-product-detail-copy .ppe-technical-spec {
  padding-top: 1.4rem;
}

@media (max-width: 720px) {
  .ppe-product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.ppe-empty-category {
  max-width: 680px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 107, 198, 0.12);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  margin: 0 auto;
}

.ppe-empty-category p { margin: 1rem auto 1.5rem; color: var(--color-muted); }

.ppe-distributors {
  margin-top: 4.5rem;
  padding-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(0, 107, 198, 0.12);
}

.ppe-distributors h2 {
  margin: 0.45rem 0 2rem;
}

.ppe-distributor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1040px;
  margin: 0 auto;
}

.ppe-distributor-brand {
  display: flex;
  min-height: 150px;
  padding: 1.35rem 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid rgba(0, 61, 165, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 47, 92, 0.09);
}

.ppe-distributor-brand img {
  display: block;
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.ppe-distributor-brand--dark { background: #122030; }

.ppe-distributor-brand--sisi { background: #68d8ce; }

@media (max-width: 980px) {
  .ppe-icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ppe-distributor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ppe-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ppe-category-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .ppe-icon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem 0.4rem; }
  .ppe-icon-card { padding: 0.45rem 0.2rem 0.65rem; border-radius: 14px; }
  .ppe-icon-card h3 { font-size: 0.7rem; }
  .ppe-distributors { margin-top: 3rem; padding-top: 2.25rem; }
  .ppe-distributor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ppe-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
  .ppe-product-image { height: 150px; }
  .ppe-product-card { padding: 0.75rem; }
  .ppe-category-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
  .ppe-category-product-image { height: 190px; }
  .ppe-category-product-grid--road-safety .ppe-category-product-image { height: 220px; }
}

@media (max-width: 420px) {
  .ppe-product-grid { grid-template-columns: 1fr; }
  .ppe-product-image { height: 190px; }
  .ppe-category-product-grid { grid-template-columns: 1fr; }
  .ppe-category-product-image { height: 240px; }
  .ppe-category-product-grid--road-safety .ppe-category-product-image { height: 280px; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-category {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid #dde7ef;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1.2rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  margin: 0.75rem 0;
}

.service-list a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.service-list a:hover {
  color: var(--color-primary);
}

/* CTA Section */
.cta-section {
  padding: 3rem 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }
}

/* Responsive refinements */
html {
  overflow-x: hidden;
  scroll-padding-top: 6rem;
}

body {
  overflow-x: hidden;
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.25rem), 1120px);
  }

  .header-inner {
    gap: 0.65rem;
    padding: 0.7rem 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 0.7rem;
    letter-spacing: 0.35px;
  }

  .menu-toggle {
    min-height: 44px;
    flex: 0 0 auto;
    padding: 0.7rem 0.9rem;
  }

  .hero {
    padding: 2.5rem 0 2.25rem;
  }

  .hero h1,
  .section h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-text,
  .section p,
  .about-quote p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .eyebrow,
  .section-eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .hero-actions,
  .page-banner-actions {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .button {
    min-height: 46px;
    padding: 0.8rem 1.25rem;
  }

  .section,
  .services-grid-section {
    padding: 2.75rem 0;
  }

  .page-title-section {
    padding: 1.75rem 0 0.75rem;
  }

  .page-title {
    font-size: 1.45rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    overflow-wrap: anywhere;
  }

  .page-banner,
  .catalog-section,
  .product-detail {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .page-banner-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .page-banner-text {
    font-size: 1rem;
  }

  .page-banner--image {
    padding: 0;
    background: #082f5c;
    width: 100%;
    height: clamp(180px, 50vw, 240px);
    min-height: 180px;
    aspect-ratio: auto;
  }

  .page-banner--image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .page-banner--washroom,
  .page-banner--safety-wear {
    width: 100%;
    height: clamp(180px, 50vw, 240px);
    min-height: 180px;
    aspect-ratio: auto;
    background: #082f5c;
  }

  .page-banner--washroom img,
  .page-banner--safety-wear img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .banner-slider {
    height: clamp(180px, 50vw, 240px);
    min-height: 180px;
    aspect-ratio: auto;
  }

  .banner-slide img {
    object-fit: cover;
    object-position: center center;
  }

  .range-grid,
  .catalogue-grid,
  .gift-category-group ul,
  .refreshment-group ul,
  .services-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .range-grid > *,
  .catalogue-grid > *,
  .gift-category-group li,
  .refreshment-group li,
  .service-category {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .range-card img,
  .catalogue-card img,
  .gift-category-group img,
  .refreshment-group img,
  .service-category img {
    max-width: 100%;
    object-position: center;
  }

  .hero-bubble {
    opacity: 0.82;
  }

  .hero-bubble:nth-child(5) {
    --bubble-size: 58px !important;
  }

  .service-grid,
  .impact-grid,
  .product-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .service-card,
  .impact-card,
  .product-card,
  .panel-card,
  .about-quote,
  .contact-form {
    min-height: 0;
    padding: 1.35rem;
    border-radius: 20px;
  }

  .service-icon {
    margin-bottom: 1rem;
  }

  .service-card h3,
  .impact-card h3 {
    margin-bottom: 0;
  }

  .about-grid,
  .contact-grid {
    gap: 1.5rem;
  }

  .feature-list {
    margin-top: 1.5rem;
  }

  .about-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .contact-info {
    margin-top: 1.35rem;
  }

  .contact-info div {
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .contact-info a,
  .contact-info span {
    overflow-wrap: anywhere;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 13px;
    font-size: 1rem;
  }

  .contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }

  .contact-form .button {
    width: 100%;
  }

  .map-wrapper {
    margin-top: 1.25rem;
    border-radius: 18px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .catalogue-grid {
    gap: 2.25rem;
  }

  .catalogue-card img {
    width: 100%;
    height: min(75vw, 320px);
  }

  .catalogue-card h3 {
    font-size: 1.65rem;
  }

  .catalog-table {
    table-layout: fixed;
    font-size: 0.82rem;
  }

  .catalog-table thead th,
  .catalog-table tbody td {
    padding: 0.65rem 0.55rem;
    overflow-wrap: anywhere;
  }

  .range-banner {
    min-height: 150px;
    margin-bottom: 2rem;
  }

  .range-banner--image {
    min-height: 0;
    border-radius: 10px;
  }

  .range-banner--image img {
    width: 100%;
    height: auto;
    animation: none;
  }

  .range-card,
  .gift-category-group,
  .refreshment-group,
  .service-category {
    padding: 1.25rem;
  }

  .range-card-media {
    min-height: 170px;
  }

  .product-detail-media {
    min-height: 260px;
    padding: 1.25rem;
  }

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

  .product-detail-placeholder {
    min-height: 230px;
  }

  .product-detail-actions .button {
    flex: 1 1 12rem;
  }

  .dispenser-detail-visual {
    min-height: 300px;
  }

  .ppe-section-header {
    margin-bottom: 1.75rem;
  }

  .ppe-distributors {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .ppe-distributor-grid {
    gap: 0.75rem;
  }

  .ppe-distributor-brand {
    min-height: 108px;
    padding: 1rem 0.65rem;
    border-radius: 14px;
  }

  .site-footer {
    padding: 1.25rem 0 1.5rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .hero-actions .button,
  .page-banner-actions .button {
    width: 100%;
  }

  .hero h1,
  .section h2 {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  .menu-label {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

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

@media (hover: none) {
  .button:hover,
  .catalogue-card:hover,
  .range-card:hover,
  a.product-list-item:hover,
  .dispenser-product-card:hover,
  .gift-category-group li a:hover,
  .ppe-distributor-brand:hover {
    transform: none;
  }
}

/* Compact catalogue cards */
@media (max-width: 640px) {
  .catalogue-viewer-section {
    padding-block: 2.5rem;
  }

  .catalogue-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .catalogue-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(13, 35, 65, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 55, 103, 0.08);
    text-align: left;
  }

  .catalogue-card img {
    width: 92px;
    height: 118px;
    border-radius: 10px;
    object-fit: cover;
    background: #f3f7fb;
  }

  .catalogue-card h3 {
    margin: 0;
    color: var(--color-dark);
    font-family: 'DejaVu Sans', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .catalogue-card h3::after {
    content: "View catalogue →";
    display: block;
    margin-top: 0.45rem;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
  }

  .gift-category-group:first-child ul,
  .gift-category-group ul {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gift-category-group li a {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 0.7rem;
    border: 1px solid rgba(13, 35, 65, 0.1);
    background: #fff;
  }

  .gift-category-group li a img {
    width: 82px;
    height: 104px;
    margin: 0;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

@media (max-width: 720px) {
  .catalogue-card:active,
  .gift-category-group li a:active,
  .range-card:active,
  .product-list-item:active,
  .dispenser-product-card:active,
  .ppe-icon-card:active,
  .ppe-product-card:active,
  .button:active {
    transform: scale(0.975);
  }
}

/* Mobile navigation: one simple dropdown, no sidebar. */
@media (max-width: 980px) {
  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(280px, calc(100vw - 1.25rem));
    max-height: none;
    padding: 0.5rem;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    background: #fff;
    border: 1px solid rgba(13, 35, 65, 0.1);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(13, 35, 65, 0.18);
    z-index: 100;
  }

  .site-nav.open {
    display: flex;
    animation: navDropdown 160ms ease-out;
  }

  .site-nav > a,
  .site-nav .nav-mega-trigger {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem;
    justify-content: flex-start;
    text-align: left;
    border-radius: 9px;
  }

  .site-nav .nav-item {
    width: 100%;
  }

  .mega-menu,
  .nav-caret,
  .menu-backdrop {
    display: none !important;
  }
}

@keyframes navDropdown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared desktop/tablet banner-holder system. Mobile keeps its existing rules. */
@media (min-width: 721px) {
  .page-banner--image,
  .banner-slider {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1861 / 454;
    overflow: hidden;
    background: #082f5c;
  }

  .page-banner--image picture,
  .page-banner--image img,
  .banner-slide picture,
  .banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 720px) {
  .banner-slider {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .banner-slide picture,
  .banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
  }

  .page-banner--image.page-banner--paper-products {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--paper-products picture,
  .page-banner--paper-products img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--washroom {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--washroom picture,
  .page-banner--washroom img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--cleaning-janitorial {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--cleaning-janitorial picture,
  .page-banner--cleaning-janitorial img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--staff-refreshments {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--staff-refreshments picture,
  .page-banner--staff-refreshments img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--promotional-gifts {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--promotional-gifts picture,
  .page-banner--promotional-gifts img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--safety-wear {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--safety-wear picture,
  .page-banner--safety-wear img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--corporate-clothing {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--corporate-clothing picture,
  .page-banner--corporate-clothing img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .page-banner--image.page-banner--cleaning-chemicals {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .page-banner--cleaning-chemicals picture,
  .page-banner--cleaning-chemicals img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }
}

/* ===== Yashtech production kit additions ===== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Preserve banner artwork at native aspect ratio to avoid soft / stretched output. */
.banner-slider {
  aspect-ratio: 1191 / 299;
  background: #eef6fb;
}
.banner-slide picture,
.banner-slide img {
  width: 100%;
  height: 100%;
}
.banner-slide img {
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}
@media (min-width: 721px) {
  .banner-slider { max-height: min(32vw, 430px); }
}
@media (max-width: 720px) {
  .banner-slider { aspect-ratio: 1 / 1; max-height: none; }
  .banner-slide img { object-fit: contain; }
}

/* Consistent catalogue cards and image treatment across all catalogue pages. */
.catalogue-grid {
  align-items: stretch;
}
.catalogue-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.catalogue-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}
.catalogue-card h3 { margin-top: auto; }

/* Paper products: larger, closer product photography without changing source files. */
.page-banner--paper-products img { object-fit: cover; }
#paper-products .product-thumb,
body:has(.paper-product-detail) .product-thumb,
.product-list-item .product-thumb {
  flex-basis: 165px;
  width: 165px;
  height: 165px;
  padding: 2px;
}
#paper-products .product-thumb img,
.product-list-item .product-thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: center;
}

/* Supplier carousel supports the expanded brand set. */
.supplier-logo-set { flex-shrink: 0; }
.supplier-logo { min-width: 170px; background: #fff; }
.supplier-logo img { max-width: 145px; max-height: 72px; object-fit: contain; }
.supplier-logo-track { animation-duration: 58s; }

/* All brand cards use a light surface; removes the previous dark Lemaitre box. */
.ppe-distributor-brand,
.ppe-distributor-brand--dark { background: #fff !important; }

/* Footer + correct outline social marks */
.site-footer { position: relative; overflow: hidden; }
.footer-inner { gap: 1rem; flex-wrap: wrap; }
.footer-social { display: flex; align-items: center; gap: .55rem; }
.footer-social a {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31,104,179,.25); border-radius: 50%; background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.footer-social a:hover { transform: translateY(-2px); border-color: var(--color-primary); box-shadow: 0 10px 24px rgba(31,104,179,.14); }
.footer-social svg { width: 18px; height: 18px; fill: none; stroke: var(--color-primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-social a:first-child svg { fill: var(--color-primary); stroke: none; }

/* Sticky Yashtech controls */
.to-top,
.wa-fab {
  position: fixed; z-index: 900; border: 0; cursor: pointer; box-shadow: 0 14px 30px rgba(13,35,65,.2);
}
.to-top {
  right: 18px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--color-primary); font-size: 1.35rem; border: 1px solid rgba(31,104,179,.18);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease;
}
.to-top.visible { opacity: 1; visibility: visible; transform: none; }
.wa-fab {
  left: 18px; bottom: 20px; min-height: 52px; padding: 0 16px; border-radius: 999px;
  background: #25D366; color: #fff; display: inline-flex; align-items: center; gap: 9px; font-weight: 800;
}
.wa-fab svg { width: 25px; height: 25px; fill: currentColor; }

.wa-bot {
  position: fixed; left: 18px; bottom: 84px; z-index: 950; width: min(360px, calc(100vw - 36px));
  background: #fff; border: 1px solid rgba(13,35,65,.1); border-radius: 22px; overflow: hidden;
  box-shadow: 0 28px 80px rgba(13,35,65,.25); opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.wa-bot.open { opacity: 1; visibility: visible; transform: none; }
.wa-bot-head { background: linear-gradient(135deg,#128C7E,#25D366); color:#fff; padding: 16px 18px; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.wa-bot-head strong,.wa-bot-head small { display:block; }
.wa-bot-head small { opacity:.9; margin-top:2px; }
.wa-close { width:34px;height:34px;border:0;border-radius:50%;background:rgba(255,255,255,.16);color:#fff;font-size:1.45rem;cursor:pointer; }
.wa-bot-body { padding: 16px; background:#f5fbf7; }
.wa-msg { padding: 11px 13px; border-radius: 14px 14px 14px 4px; background:#fff; box-shadow:0 6px 18px rgba(13,35,65,.08); margin-bottom:12px; }
.wa-options { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:12px; }
.wa-options button { border:1px solid rgba(31,104,179,.18); background:#fff; color:var(--color-dark); border-radius:12px; padding:10px; cursor:pointer; font-weight:700; }
.wa-options button.selected { border-color:#25D366; box-shadow:0 0 0 2px rgba(37,211,102,.12); }
.wa-custom-label { display:block; font-size:.8rem; font-weight:700; color:var(--color-muted); }
.wa-custom { width:100%; resize:vertical; min-height:76px; border:1px solid rgba(31,104,179,.18); border-radius:12px; padding:10px; margin-top:5px; background:#fff; }
.wa-send { width:100%; margin-top:10px; border:0; border-radius:999px; background:#25D366; color:#fff; padding:12px 16px; font-weight:800; cursor:pointer; }

@media (max-width: 720px) {
  .wa-fab { width:52px; padding:0; justify-content:center; }
  .wa-fab span { display:none; }
  .to-top { right:14px; bottom:14px; }
  .wa-fab { left:14px; bottom:14px; }
  .wa-bot { left:12px; bottom:76px; width:calc(100vw - 24px); }
  .wa-options { grid-template-columns:1fr; }
  .product-list-item .product-thumb { flex-basis: 125px; width:125px; height:125px; }
}
.form-status { margin-bottom: 1rem; padding: .85rem 1rem; border-radius: 12px; font-weight: 700; }
.form-status--sent { background: #e8f8ef; color: #166534; border: 1px solid #b7e4c7; }
.form-status--error { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }
