/* ==========================================================================
   AHS — Powered by Hindustan Steel — Design System
   Poppins only · Premium minimal B2B catalog aesthetic
   ========================================================================== */

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}

:root {
  /* Brand palette — sampled from the real AHS logo: chrome/gunmetal/steel, strictly monochrome.
     "--red" is kept as a variable name for backwards-compat with the rest of the stylesheet,
     but it now points to a dark charcoal grey, not an actual red — no red anywhere on the site. */
  --navy: #202124;
  --navy-dark: #131416;
  --navy-soft: #2e3033;
  --red: #45474c;
  --red-dark: #2b2c30;
  --silver: #9a9da2;
  --silver-light: #f1f1f2;
  --text: #1e1f22;
  --bg: #fafafa;
  --white: #ffffff;
  --gray: #6e7075;
  --border: #e3e4e6;

  /* Type scale — premium hero/section hierarchy */
  --h1: 60px;
  --h1-tablet: 40px;
  --h1-mobile: 32px;
  --h2: 42px;
  --h2-tablet: 34px;
  --h2-mobile: 28px;
  --h3: 21px;
  --h3-mobile: 18px;
  --body: 16px;
  --lede: 19px;
  --small: 13px;

  /* Spacing scale — 8 / 16 / 24 / 32 / 48 / 64 / 96 / 128 */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  /* Layout */
  --container: 1200px;
  --gutter: 40px;
  --gutter-mobile: 20px;
  --section-pad: 120px;
  --section-pad-mobile: 64px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Elevation — soft, layered, premium (never a single hard shadow) */
  --shadow-xs: 0 1px 2px rgba(20, 21, 24, 0.05);
  --shadow-sm: 0 2px 8px rgba(20, 21, 24, 0.05), 0 1px 2px rgba(20, 21, 24, 0.04);
  --shadow-card: 0 1px 2px rgba(20, 21, 24, 0.04), 0 8px 24px -8px rgba(20, 21, 24, 0.10);
  --shadow-card-hover: 0 2px 4px rgba(20, 21, 24, 0.05), 0 24px 48px -16px rgba(20, 21, 24, 0.22);
  --shadow-lg: 0 24px 64px -20px rgba(20, 21, 24, 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  /* clip (not hidden) — hidden forces overflow-y:auto per spec, which makes
     body/html a scroll container and silently breaks position:sticky on the
     PDP gallery column and anywhere else on the page */
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin: 0;
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Accessibility & polish -------------------------------------------- */
:root {
  /* native form controls (checkbox/radio/range/progress) pick up the brand */
  accent-color: var(--navy);
}
html {
  /* anchor / skip-link jumps land below the sticky header, not under it */
  scroll-padding-top: 96px;
}
::selection {
  background: var(--navy);
  color: var(--white);
}
/* Skip link — off-screen until keyboard-focused */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline-offset: 2px;
}
/* Tabular figures so stat / step numbers stay optically aligned */
.aw-stat-strip__num,
.process-step__num,
.stats-band__num,
.aw-diff-card__num {
  font-variant-numeric: tabular-nums;
}

@media print {
  .preview-bar,
  .announcement-bar,
  .site-header,
  .site-footer,
  .mobile-cta-bar,
  .whatsapp-float,
  .call-float,
  .scroll-top-btn,
  .hero-controls,
  .nav-backdrop {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  a {
    text-decoration: underline;
  }
  main {
    padding-top: 0;
  }
}

/* ---- Type ------------------------------------------------------------ */
h1,
.h1 {
  font-size: var(--h1);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h2,
.h2 {
  font-size: var(--h2);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h3,
.h3 {
  font-size: var(--h3);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  h1,
  .h1 {
    font-size: var(--h1-tablet);
  }
  h2,
  .h2 {
    font-size: var(--h2-tablet);
  }
}
@media (max-width: 640px) {
  h1,
  .h1 {
    font-size: var(--h1-mobile);
  }
  h2,
  .h2 {
    font-size: var(--h2-mobile);
  }
  h3,
  .h3 {
    font-size: var(--h3-mobile);
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--light {
  color: var(--silver);
}
.lede {
  font-size: var(--lede);
  line-height: 1.65;
  color: var(--gray);
  max-width: 62ch;
}
.meta {
  font-size: var(--small);
  color: var(--gray);
}
p {
  max-width: 68ch;
}

/* ---- Layout ------------------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile);
}
@media (min-width: 900px) {
  .container {
    padding: 0 var(--gutter);
  }
}
.section {
  padding: var(--section-pad-mobile) 0;
}
@media (min-width: 900px) {
  .section {
    padding: var(--section-pad) 0;
  }
}
.section--tight {
  padding: var(--sp-5) 0;
}
.section--tight-bottom {
  padding-bottom: var(--sp-6);
}
.section--silver {
  background: var(--silver-light);
}
.section--navy {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}
.section--navy .container {
  position: relative;
}
.section--navy .meta {
  color: var(--silver);
}
.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-5);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--sp-3);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ---- Scroll-reveal animation utilities --------------------------------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal {
  transform: translateY(28px);
}
.reveal-left {
  transform: translateX(-32px);
}
.reveal-right {
  transform: translateX(32px);
}
.reveal-scale {
  transform: scale(0.94);
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
    color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(20, 21, 24, 0.08);
}
.btn--primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 12px 24px -10px rgba(20, 21, 24, 0.45);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(213, 48, 63, 0.15);
}
.btn--accent:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 28px -10px rgba(213, 48, 63, 0.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn--outline-dark:hover {
  border-color: var(--navy);
  background: var(--silver-light);
  transform: translateY(-2px);
}
.btn--block {
  width: 100%;
  justify-content: center;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Button ripple (pointer-driven micro interaction) */
.btn .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: btn-ripple 0.6s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
@keyframes btn-ripple {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* Animated underline (used on inline text links) */
.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---- Header -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -16px rgba(20, 21, 24, 0.25);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* longhand on purpose: this element also carries .container's horizontal
     padding — a shorthand `padding: 18px 0` here would zero that out */
  padding-top: 18px;
  padding-bottom: 18px;
  transition: padding 0.3s var(--ease-out);
}
.site-header.is-scrolled .header-bar {
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s var(--ease-out);
}
/* Chrome/gradient logo needs a light plate to stay legible on dark sections (footer) */
.logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
}
.logo-badge img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.header-phone:hover {
  color: var(--red);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 65px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--gutter-mobile);
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* ---- Shop mega menu (category tiles: photo + name) ------------------------ */
.nav-item--mega {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item--mega .nav-item__link {
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
}
.nav-item--mega .nav-item__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  color: var(--gray);
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
}
.nav-item--mega .nav-item__toggle svg {
  width: 15px;
  height: 15px;
}
.nav-item--mega:hover .nav-item__toggle,
.nav-item--mega.is-open .nav-item__toggle {
  color: var(--red);
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 620px;
  max-width: 80vw;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  z-index: 50;
}
.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu,
.nav-item--mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-menu .mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mega-menu .mega-menu__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: auto;
  padding: 10px 6px;
  border: none;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}
.mega-menu .mega-menu__tile::after {
  display: none;
}
.mega-menu .mega-menu__tile:hover {
  background: var(--silver-light);
}
.mega-menu__thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--silver-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.mega-menu .mega-menu__tile:hover .mega-menu__thumb {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.mega-menu__thumb img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}
.mega-menu__thumb .media-pending {
  background: none;
  width: 100%;
  height: 100%;
}
.mega-menu__thumb .media-pending svg {
  width: 18px;
  height: 18px;
}
.mega-menu__thumb .media-pending span {
  display: none;
}
.mega-menu__name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}
.mega-menu .mega-menu__viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin-top: 18px;
  padding: 0;
  padding-top: 18px;
  border: none;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.2s ease;
}
.mega-menu .mega-menu__viewall::after {
  display: none;
}
.mega-menu .mega-menu__viewall svg {
  width: 15px;
  height: 15px;
}
.mega-menu .mega-menu__viewall:hover {
  gap: 12px;
}
@media (max-width: 900px) {
  .nav-item--mega {
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
  }
  .nav-item--mega .nav-item__link {
    flex: 1;
    width: auto;
    padding: 14px 0;
    border-bottom: none;
  }
  .nav-item--mega .nav-item__toggle {
    padding: 14px 6px;
  }
  .mega-menu,
  .nav-item--mega:hover .mega-menu,
  .nav-item--mega:focus-within .mega-menu,
  .nav-item--mega.is-open .mega-menu {
    position: static;
    left: auto;
    width: 100%;
    max-width: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0 0 16px;
    display: none;
  }
  .nav-item--mega.is-open .mega-menu {
    display: block;
  }
  .mega-menu .mega-menu__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .mega-menu__thumb {
    width: 56px;
    height: 56px;
  }
  .mega-menu__name {
    font-size: 11px;
  }
  .mega-menu .mega-menu__viewall {
    margin-top: 12px;
    padding-top: 14px;
  }
}

/* ---- Breadcrumb ------------------------------------------------------ */
.breadcrumb {
  padding: 20px 0;
  font-size: var(--small);
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a {
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb .sep {
  margin: 0 8px;
  color: var(--silver);
}

/* ---- Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 96px 0 108px;
  color: var(--text);
  background: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 21, 24, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 20% 30%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 60% at 20% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 56px 0 64px;
  }
}
.hero p.lede {
  color: var(--gray);
  margin-top: 20px;
  font-size: 18px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
/* Mobile-only prev/next: flank the image itself (vertically centered on it), since
   on mobile the hero stacks into text-then-image and the desktop control-row arrows
   (below, with the dots) would sit too far from the swipeable image to feel attached. */
.hero-art-arrow {
  display: none;
}
@media (max-width: 900px) {
  .hero-art-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
  }
  .hero-art-arrow svg {
    width: 16px;
    height: 16px;
  }
  .hero-art-arrow--prev {
    left: 4px;
  }
  .hero-art-arrow--next {
    right: 4px;
  }
  /* The desktop control-row prev/next (with the dots) give way to the arrows above */
  .hero-controls .hero-arrow {
    display: none;
  }
}
.hero-art img {
  position: relative;
  z-index: 1;
  max-height: 380px;
  width: auto;
  margin: 0 auto;
  filter: none;
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art img {
    animation: none;
  }
}

/* Photographic hero slides (real photos, not product cutouts) get a framed card instead of the floating-glow treatment */
.hero-art--photo {
  padding: 0;
}
.hero-art--photo::before,
.hero-art--photo::after {
  display: none;
}
.hero-art--photo img {
  position: static;
  animation: none;
  filter: none;
  width: 100%;
  max-height: none;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}
.hero-photo-credit {
  position: absolute;
  right: 8px;
  bottom: -22px;
  font-size: 11px;
  color: var(--silver);
  opacity: 0.7;
}

/* ---- Hero slider --------------------------------------------------------- */
.hero-slider-track {
  position: relative;
}
.hero-slides {
  display: grid;
}
.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-dots {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .hero-dots {
    margin-top: 28px;
  }
}
.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(20, 21, 24, 0.16);
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.hero-dot:hover {
  background: rgba(20, 21, 24, 0.32);
}
.hero-dot.is-active {
  width: 24px;
  background: var(--navy);
}
.hero-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.hero-controls .hero-dots {
  margin-top: 0;
}
@media (max-width: 900px) {
  .hero-controls {
    margin-top: 28px;
    gap: 12px;
  }
}
.hero-arrow {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover {
  background: var(--silver-light);
  border-color: var(--navy);
}
.hero-arrow svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 900px) {
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ---- Trust / feature strip -------------------------------------------- */
.trust-bar {
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 0;
  transition: transform 0.3s var(--ease-out);
}
.trust-item:hover {
  transform: translateY(-2px);
}
.trust-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}
.trust-item:hover .trust-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.06);
}
.trust-icon svg {
  width: 21px;
  height: 21px;
}
.trust-item h3 {
  margin-bottom: 4px;
}
.trust-item p {
  color: var(--gray);
  font-size: var(--small);
}

/* ---- Stats / counters -------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  text-align: center;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4) var(--sp-3);
  }
}
.stat-num {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .stat-num {
    font-size: 36px;
  }
}
.stat-label {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ---- Category / product cards ----------------------------------------- */
.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: rgba(32, 33, 36, 0.12);
}
.card-media {
  aspect-ratio: 4/3;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.6s var(--ease-out);
}
.card:hover .card-media img {
  transform: scale(1.07);
}
.card-body {
  padding: 24px;
}
.card-body h3 {
  margin-bottom: 8px;
}
.card-body p {
  color: var(--gray);
  font-size: var(--small);
  margin-bottom: 16px;
}
.card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.card-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}
.card:hover .card-link {
  color: var(--red);
}
.card:hover .card-link::after {
  transform: translateX(4px);
}

/* pending-photo placeholder tile */
.media-pending {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: repeating-linear-gradient(
    135deg,
    var(--silver-light),
    var(--silver-light) 10px,
    #eceff3 10px,
    #eceff3 20px
  );
  color: var(--gray);
}
.media-pending svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
}
.media-pending span {
  font-size: 12px;
  font-weight: 500;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  color: var(--gray);
  box-shadow: var(--shadow-xs);
}

/* ---- Icon feature blocks ------------------------------------------- */
.feature {
  display: flex;
  gap: 18px;
  transition: transform 0.3s var(--ease-out);
}
.feature:hover {
  transform: translateY(-2px);
}
.feature-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.feature:hover .feature-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.feature h3 {
  margin-bottom: 6px;
}
.feature p {
  color: var(--gray);
  font-size: var(--small);
  line-height: 1.6;
}

/* ---- Feature card: bordered, padded variant for icon+copy grids (Why AHS, Why Choose AHS) ---- */
.feature-card {
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--navy);
}

/* ---- Brand story split ------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.split img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.split img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
blockquote {
  margin: 24px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: var(--gray);
  font-size: 17px;
}

/* ---- CTA banner ------------------------------------------------------- */
.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(213, 48, 63, 0.28) 0%, rgba(213, 48, 63, 0) 65%);
  pointer-events: none;
}
.cta-banner > * {
  position: relative;
}
.cta-banner .meta {
  margin-top: 6px;
}
@media (max-width: 640px) {
  .cta-banner {
    padding: 36px 28px;
  }
}

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--navy-dark);
  color: var(--silver);
}
.footer-top {
  /* longhand: this element also carries .container's horizontal padding */
  padding-top: 72px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.footer-top img {
  height: 28px;
  margin-bottom: 16px;
}
.footer-top .logo-badge img {
  height: 34px;
  margin-bottom: 0;
}
.footer-top p {
  font-size: var(--small);
  color: var(--silver);
  opacity: 0.8;
}
.footer-col h3 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col a {
  font-size: var(--small);
  color: var(--silver);
  opacity: 0.85;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}
.footer-col a:hover {
  color: var(--white);
  opacity: 1;
  padding-left: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* longhand: this element also carries .container's horizontal padding */
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.7;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---- Forms -------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form-grid {
    /* minmax(0, 1fr), not 1fr: a bare 1fr track can't shrink below its content's
       min-content (e.g. the category <select>'s longest option), which blows the
       grid out past the card's padding on narrow screens */
    grid-template-columns: minmax(0, 1fr);
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(32, 33, 36, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- Contact page ------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
@media (max-width: 900px) {
  .contact-grid {
    /* minmax(0, 1fr): same grid-blowout guard as .form-grid above */
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out);
}
.contact-detail:hover {
  transform: translateX(4px);
}
.contact-detail:last-child {
  border-bottom: none;
}
.contact-detail .icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--silver-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-detail:hover .icon {
  background: var(--navy);
  color: var(--white);
}
.contact-detail .icon svg {
  width: 18px;
  height: 18px;
}
.contact-detail h3 {
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-detail p,
.contact-detail a {
  font-size: 14px;
  color: var(--gray);
}

/* ---- Shop page filter bar ---------------------------------------------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 44px;
}
.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chip:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
}
.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.sort-select {
  font-family: inherit;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
}

/* ---- Product detail page ----------------------------------------------- */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.pdp-grid > div {
  min-width: 0;
}
.pdp-grid h1 {
  font-size: 34px;
}
@media (max-width: 640px) {
  .pdp-grid h1 {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.pdp-gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 36px;
  transition: transform 0.5s var(--ease-out);
}
.pdp-gallery-main:hover img {
  transform: scale(1.05);
}
.pdp-gallery-main.is-zoomable img {
  cursor: zoom-in;
}
.pdp-gallery-main__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.pdp-gallery-main__zoom:hover {
  background: var(--white);
  transform: scale(1.06);
}
.pdp-gallery-main__zoom svg {
  width: 18px;
  height: 18px;
}
.pdp-gallery-main .media-pending svg {
  width: 56px;
  height: 56px;
}
.pdp-gallery-main .media-pending span {
  font-size: 14px;
}
.pdp-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pdp-thumbs .thumb {
  width: 66px;
  height: 66px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pdp-thumbs .thumb:hover {
  transform: translateY(-2px);
}
.pdp-thumbs .thumb.is-active {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(32, 33, 36, 0.12);
}
.pdp-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 22px;
}
.size-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 26px;
}
.size-pill {
  padding: 11px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.size-pill:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}
.size-pill.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.qty-stepper button {
  width: 40px;
  height: 44px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--navy);
  transition: background-color 0.2s ease;
}
.qty-stepper button:hover {
  background: var(--silver-light);
}
.qty-stepper input {
  width: 40px;
  text-align: center;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.pdp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 6px;
}
.pdp-cta-row .btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 150px;
}

.bulk-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 26px 0;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--silver-light);
  border: 1px solid var(--border);
}
.bulk-block h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 26px 0;
}
.trust-row .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s ease;
}
.whatsapp-link:hover {
  color: var(--red);
}

.tabs {
  margin-top: 68px;
}
.tab-list {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  background: none;
  border: none;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.tab-btn:hover {
  color: var(--navy);
}
.tab-btn.is-active {
  color: var(--navy);
  border-color: var(--red);
}
.tab-panel {
  display: none;
  padding: 32px 0;
  animation: tab-fade 0.4s var(--ease-out);
}
.tab-panel.is-active {
  display: block;
}
@keyframes tab-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 560px;
}
.spec-table tr {
  border-bottom: 1px solid var(--border);
}
.spec-table td {
  padding: 13px 0;
  font-size: 14px;
}
.spec-table td:first-child {
  color: var(--gray);
  width: 40%;
}
.spec-table td:last-child {
  font-weight: 500;
}

/* ---- Product detail: Applications list, table-formatted ------------------ */
.applications-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 560px;
}
.applications-table tr {
  border-bottom: 1px solid var(--border);
}
.applications-table tr:last-child {
  border-bottom: none;
}
.applications-table td {
  padding: 12px 0;
  font-size: 14px;
}
.applications-table td:first-child {
  width: 30px;
}
.applications-table__icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--silver-light);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.applications-table__icon svg {
  width: 11px;
  height: 11px;
}

/* ---- Policy / legal pages ----------------------------------------------- */
.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.policy-nav {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.policy-nav a {
  display: block;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.policy-nav a:hover {
  background: var(--silver-light);
  color: var(--navy);
}
.policy-nav a[aria-current="page"] {
  background: var(--silver-light);
  color: var(--navy);
}
.policy-body h2 {
  font-size: 21px;
  margin-top: 44px;
  margin-bottom: 14px;
}
.policy-body h2:first-child {
  margin-top: 0;
}
.policy-body p,
.policy-body li {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 12px;
}
.policy-body ul {
  list-style: disc;
  padding-left: 20px;
}
.policy-body [data-placeholder] {
  color: var(--red);
  font-weight: 500;
  background: rgba(213, 48, 63, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
}
.policy-updated {
  color: var(--gray);
  font-size: var(--small);
  margin-bottom: 32px;
}
.review-banner {
  background: var(--silver-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
}
.review-banner strong {
  color: var(--navy);
}

/* ---- Newsletter strip ---------------------------------------------------- */
.enquiry-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.enquiry-form-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.enquiry-form-inline input {
  font-family: inherit;
  padding: 13px 17px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-width: 200px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-form-inline input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(32, 33, 36, 0.08);
}

/* ---- Announcement bar --------------------------------------------------- */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
}

/* ---- Marquee (sliding text strip above header) ---------------------- */
.marquee {
  overflow: hidden;
  padding: 9px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 14px;
  white-space: nowrap;
}
.marquee__dot {
  font-size: 4px;
  opacity: 0.6;
  transform: translateY(-3px);
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
  .marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* ---- Header icon buttons + search ---------------------------------------- */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: none;
  border: none;
  color: var(--navy);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.icon-btn:hover {
  background: var(--silver-light);
  color: var(--red);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}
.icon-btn--whatsapp:hover {
  color: #25d366;
}
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search__form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.header-search__form.is-open {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
  pointer-events: auto;
}
.header-search__form input {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 16px;
  width: 240px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-search__form input:focus {
  outline: none;
  border-color: var(--navy);
}
@media (max-width: 900px) {
  .header-actions {
    gap: 4px;
  }
  /* Quote CTA is repeated inside the mobile drawer (.nav-links__quote) — no
     need for a second one crowding the header bar on small screens */
  .header-quote-btn {
    display: none;
  }
  .header-search__form {
    top: 100%;
    right: 0;
    margin-top: 10px;
    width: 240px;
    transform-origin: top right;
    transform: scaleY(0);
  }
  .header-search__form.is-open {
    transform: scaleY(1);
  }
}

/* ---- Mobile sticky CTA bar ------------------------------------------------ */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 900px) {
  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px -12px rgba(20, 21, 24, 0.18);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-cta-bar a,
  .mobile-cta-bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px 12px;
    background: none;
    border: none;
    border-right: 1px solid var(--border);
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    color: var(--navy);
  }
  .mobile-cta-bar a:last-child,
  .mobile-cta-bar button:last-child {
    border-right: none;
    background: var(--red);
    color: var(--white);
  }
  .mobile-cta-bar svg {
    width: 19px;
    height: 19px;
  }
  body {
    padding-bottom: 66px;
  }
}

/* ---- Floating WhatsApp button ---------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
}
@media (max-width: 900px) {
  .whatsapp-float {
    bottom: 82px;
    right: 16px;
  }
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px -8px rgba(37, 211, 102, 0.65);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float a {
    animation: none;
  }
}

/* ---- Request Quote modal --------------------------------------------------- */
body.modal-open {
  overflow: hidden;
}
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}
.quote-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 24, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.quote-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease-out);
}
.quote-modal.is-open .quote-modal__panel {
  transform: none;
}
@media (max-width: 640px) {
  .quote-modal__panel {
    padding: 28px 22px;
  }
}
.quote-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--silver-light);
  border: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.quote-modal__close:hover {
  background: var(--border);
}
.quote-modal__close svg {
  width: 16px;
  height: 16px;
}
.quote-modal__view h3 {
  margin-bottom: 8px;
}
.quote-modal__view .form-grid {
  margin-top: 24px;
}
.quote-modal__view[data-view="success"] {
  text-align: center;
  padding: 20px 0;
}
.quote-modal__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-modal__view[data-view="success"] .btn {
  margin-top: 22px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Product detail: image lightbox ---------------------------------------- */
body.lightbox-open {
  overflow: hidden;
}
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}
.pdp-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.pdp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 24, 0.9);
}
.pdp-lightbox__stage {
  position: relative;
  z-index: 1;
  width: min(88vw, 900px);
  height: min(82vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out);
}
.pdp-lightbox.is-open .pdp-lightbox__stage {
  transform: none;
}
.pdp-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pdp-lightbox__close,
.pdp-lightbox__nav {
  position: absolute;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.pdp-lightbox__close:hover,
.pdp-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.pdp-lightbox__close {
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
}
.pdp-lightbox__close svg {
  width: 18px;
  height: 18px;
}
.pdp-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.pdp-lightbox__nav svg {
  width: 20px;
  height: 20px;
}
.pdp-lightbox__nav--prev {
  left: 16px;
}
.pdp-lightbox__nav--next {
  right: 16px;
}
.pdp-lightbox__count {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 13px;
  color: var(--silver);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .pdp-lightbox__stage {
    width: 92vw;
    height: 70vh;
  }
  .pdp-lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .pdp-lightbox__nav--prev { left: 8px; }
  .pdp-lightbox__nav--next { right: 8px; }
}

/* ---- Hero floating enquiry card -------------------------------------------- */
.hero-float-card {
  position: absolute;
  left: -20px;
  bottom: 8px;
  z-index: 2;
  width: 250px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  color: var(--text);
}
.hero-float-card p.eyebrow {
  margin-bottom: 6px;
}
.hero-float-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-float-card p.meta {
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .hero-float-card {
    position: static;
    width: auto;
    margin-top: 24px;
  }
}

/* ---- Product / category badges --------------------------------------------- */
.badge--popular,
.badge--best-seller,
.badge--export-quality,
.badge--made-to-size {
  color: var(--white);
  border: none;
}
.badge--popular {
  background: var(--navy);
}
.badge--best-seller {
  background: var(--red);
}
.badge--export-quality {
  background: #5b5d62;
}
.badge--made-to-size {
  background: #77797e;
}

/* ---- Product card CTA row --------------------------------------------------- */
.card-cta-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.card-cta-row .btn {
  flex: 1;
  justify-content: center;
}
.card-cta-row .icon-btn {
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  color: #25d366;
}
.card-cta-row .icon-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
}
.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.card-meta-row .meta {
  margin-bottom: 0;
}

/* ---- Circular category nav --------------------------------------------------- */
.category-nav {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
}
.category-nav::-webkit-scrollbar {
  height: 6px;
}
.category-nav::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}
.category-nav__item {
  flex: none;
  width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.category-nav__circle {
  width: 108px;
  height: 108px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.3s ease, box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.category-nav__item:hover .category-nav__circle {
  border-color: var(--navy);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.category-nav__circle img {
  display: block;
  width: 76%;
  height: 76%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}
.category-nav__circle--photo img {
  width: 84%;
  height: 84%;
}
.category-nav__circle .media-pending {
  background: none;
  width: 100%;
  height: 100%;
}
.category-nav__circle .media-pending svg {
  width: 22px;
  height: 22px;
}
.category-nav__circle .media-pending span {
  display: none;
}
.category-nav__item h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

/* ---- Who We Supply ------------------------------------------------------------ */
.supply-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.supply-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}
.supply-card .supply-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--silver-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.supply-card:hover .supply-icon {
  background: var(--navy);
  color: var(--white);
}
.supply-card .supply-icon svg {
  width: 21px;
  height: 21px;
}
.supply-card h3 {
  margin-bottom: 6px;
}
.supply-card p {
  color: var(--gray);
  font-size: var(--small);
  margin-bottom: 14px;
}
.supply-card .card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.supply-card:hover .card-link {
  color: var(--red);
}

/* ---- CTA banner checkpoints --------------------------------------------------- */
.cta-banner__points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 0;
}
.cta-banner__points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--silver);
}
.cta-banner__points svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.85);
  flex: none;
}
.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Testimonials ---------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  /* --border is too light to read against the white/silver card background —
     a visibly darker tone so the card edge actually shows */
  border: 1px solid rgba(32, 33, 36, 0.16);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--red);
}
.testimonial-stars svg {
  width: 15px;
  height: 15px;
}
.testimonial-card p.quote {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
}
.testimonial-author strong {
  font-size: 14px;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gray);
}

/* ---- Catalogue download ------------------------------------------------------------ */
.catalogue-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: var(--silver-light);
  border: 1px solid var(--border);
}
.catalogue-cta__icon {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalogue-cta__icon svg {
  width: 28px;
  height: 28px;
}
.catalogue-cta__text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 260px;
}
@media (max-width: 640px) {
  .catalogue-cta {
    /* Row + wrap lets .catalogue-cta__text's flex-basis:0 track shrink to ~0 instead
       of wrapping, so the download button ends up overlapping the heading/copy —
       force a real stacked layout on phones instead. */
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
  }
  .catalogue-cta__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .catalogue-download {
    width: 100%;
  }
  .catalogue-download__toggle {
    width: 100%;
    justify-content: center;
  }
}

/* ---- FAQ accordion ------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
.faq-question .faq-icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.faq-question .faq-icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-question .faq-icon::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 4px 22px;
  color: var(--gray);
  font-size: 14px;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* ---- Dev preview bar (design-review only, not shipped to WordPress) ---- */
.preview-bar {
  display: none;
  background: var(--navy-dark);
  color: var(--silver);
  font-size: 12px;
  padding: 8px 0;
}
.preview-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.preview-bar a {
  color: var(--white);
  text-decoration: underline;
}

/* ==========================================================================
   REDESIGN ADDITIONS — reference-matched components
   ========================================================================== */

/* ---- Category circles: polish + tinted rings, wraps instead of scroll on desktop ---- */
.category-nav {
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: visible;
  gap: 32px 28px;
}
@media (max-width: 640px) {
  .category-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}
.category-nav__circle {
  width: 116px;
  height: 116px;
  background: var(--white);
}
.category-nav__item:hover .category-nav__circle {
  transform: translateY(-6px) scale(1.03);
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head--row .section-head { margin-bottom: 0; }
.view-all-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-bottom: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.view-all-link:hover {
  color: var(--red);
  gap: 10px;
}

/* ---- Product card: quick-enquire floating icon on image ---- */
.card-media {
  position: relative;
}
.card-media__quick {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background-color 0.2s ease, color 0.2s ease;
}
.card-media__quick svg {
  width: 16px;
  height: 16px;
}
.card:hover .card-media__quick,
.card:focus-within .card-media__quick {
  opacity: 1;
  transform: translateY(0);
}
.card-media__quick:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- Page hero (photo banner — About / Contact) ---- */
.page-hero {
  position: relative;
  padding: 88px 0 56px;
  color: var(--white);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.28;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(19, 20, 22, 0.92) 10%, rgba(19, 20, 22, 0.55) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow--light {
  justify-content: center;
}
.page-hero h1 {
  margin-top: 10px;
}
.page-hero p.lede {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--silver-light);
}
.page-hero__crumb {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 13px;
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-hero__crumb a {
  color: var(--silver-light);
  transition: color 0.2s ease;
}
.page-hero__crumb a:hover {
  color: var(--red);
}
.page-hero__credit {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Stats band (About page) ---- */
.stats-band {
  background: var(--navy);
  color: var(--white);
}
.stats-band .grid-4 {
  gap: 0;
}
.stats-band__item {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stats-band__item:last-child {
  border-right: none;
}
.stats-band__num {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stats-band__num span {
  color: var(--silver);
}
.stats-band__label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--silver);
  letter-spacing: 0.03em;
}
@media (max-width: 760px) {
  .stats-band .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ---- Pill tabs (About — Mission / Vision / Goal) reuses .tabs JS ---- */
.pill-tabs .tab-list {
  display: inline-flex;
  gap: 8px;
  border-bottom: none;
  background: var(--silver-light);
  padding: 6px;
  border-radius: 999px;
}
.pill-tabs .tab-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
}
.pill-tabs .tab-btn::after {
  display: none;
}
.pill-tabs .tab-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

/* ---- PDP tag pills (e.g. "Made to Order", "Multiple Sizes") ---- */
.pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.pdp-tag {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--silver-light);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}

/* ---- PDP highlight stats row (icon + label, 3-up) ---- */
.pdp-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pdp-highlights__item {
  text-align: center;
}
.pdp-highlights__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: var(--silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.pdp-highlights__icon svg {
  width: 20px;
  height: 20px;
}
.pdp-highlights__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
@media (max-width: 480px) {
  .pdp-highlights__item strong {
    font-size: 12px;
  }
}

/* ---- PDP: Check Delivery Availability widget ---- */
.delivery-check {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--silver-light);
}
.delivery-check h3 {
  font-size: 15px;
  margin-bottom: 4px;
}
.delivery-check p.meta {
  margin-bottom: 14px;
}
.delivery-check__row {
  display: flex;
  gap: 10px;
}
.delivery-check__row input {
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.delivery-check__row input:focus {
  outline: none;
  border-color: var(--navy);
}
.delivery-check__result {
  display: none;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.5;
}
.delivery-check__result.is-visible {
  display: flex;
}
.delivery-check__result.is-ok {
  background: #eaf7ee;
  color: #1e6b34;
}
.delivery-check__result.is-error {
  background: #fbeaec;
  color: #a3202f;
}
.delivery-check__result svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

/* ---- Shop page: sidebar layout ---- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.shop-toolbar__count {
  font-size: 13px;
  color: var(--gray);
}
.shop-filter-toggle {
  display: none;
}
@media (max-width: 900px) {
  .shop-filter-toggle {
    display: inline-flex;
  }
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--navy);
}
.filter-chips--sidebar {
  flex-direction: column;
  gap: 2px;
}
.filter-chips--sidebar .chip {
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 10px 12px;
  text-align: left;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-chips--sidebar .chip::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.filter-chips--sidebar .chip.is-active {
  background: var(--silver-light);
  color: var(--navy);
}
.filter-chips--sidebar .chip.is-active::before {
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
  border-color: var(--navy);
}
.filter-chips--sidebar .chip:hover {
  transform: none;
  color: var(--navy);
  background: var(--silver-light);
}
.sidebar-help {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border: none;
}
.sidebar-help h3 {
  color: var(--white);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.sidebar-help p {
  color: var(--silver);
  font-size: 13px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .shop-sidebar {
    display: none;
  }
  .shop-sidebar.is-open {
    display: block;
  }
}

/* ---- Empty state (shop grid, no matches) ---- */
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  color: var(--gray);
}
.shop-empty svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  opacity: 0.5;
}

/* ---- Contact page: form field polish (2-col grid already via .form-grid) ---- */
.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* ---- Sitemap / policy simple hero reuses .page-hero without image ---- */
.page-hero--plain {
  padding: 64px 0 48px;
}
.page-hero--plain::after {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
}

/* ==========================================================================
   REDESIGN v2 — client revision pass
   ========================================================================== */

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

/* ---- Award-winning gradient system ------------------------------------- */
body {
  background:
    radial-gradient(1100px 520px at 8% -6%, rgba(213, 48, 63, 0.055) 0%, rgba(213, 48, 63, 0) 60%),
    radial-gradient(900px 480px at 100% 0%, rgba(32, 33, 36, 0.05) 0%, rgba(32, 33, 36, 0) 55%),
    var(--bg);
}
.section--silver {
  background: linear-gradient(180deg, var(--silver-light) 0%, #eef0f2 100%);
}
.card,
.testimonial-card {
  background: linear-gradient(165deg, #ffffff 0%, #fbfbfc 100%);
}
.btn--accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}
.btn--primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

/* ---- Header: bigger logo + robust mobile-menu offset -------------------- */
.logo img {
  height: 52px;
}
@media (max-width: 900px) {
  .logo img {
    height: 42px;
  }
}
/* Chromium/WebKit position absolutely-positioned descendants of a position:sticky
   ancestor using the ancestor's unstuck (static) position, not its current stuck
   position — so anchoring this to "100% of the sticky header" put the drawer off
   above the viewport once the page was scrolled. position:fixed sidesteps that
   entirely; --header-h is kept in sync with the header's real rendered height by
   main.js (it changes a few px when .is-scrolled shrinks the header padding). */
.nav-links {
  z-index: 60;
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--header-h, 65px);
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/* ---- Hero: fits in one view, big product imagery ------------------------- */
.hero {
  padding: 44px 0 56px;
}
@media (min-width: 901px) {
  .hero {
    /* Roughly the sticky header's height so the hero + header together fill the screen */
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
  }
  .hero > .container {
    width: 100%;
  }
}
.hero-art img {
  max-height: 420px;
}
@media (max-width: 900px) {
  .hero {
    padding: 40px 0 32px;
  }
  .hero-dots {
    margin-top: 20px;
  }
  .hero-art img {
    max-height: 280px;
  }
  .hero-grid {
    gap: 28px;
  }
}

/* ---- Trust bar: cleaner icon-led layout, no descriptive copy ------------ */
.trust-item {
  align-items: center;
  gap: 14px;
}
.trust-item h3 {
  margin-bottom: 0;
  font-size: 15px;
}

/* ---- Feature blocks: icon instead of number (Why AHS / Why Choose AHS) -- */
.feature {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  transition: transform 0.3s var(--ease-out);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature:hover .feature-icon {
  transform: translateY(-3px) scale(1.05);
}
.feature h3 {
  font-size: 16px;
}

/* ---- Category nav: single row of 8 on desktop, 2x4 grid on mobile ------- */
.category-nav {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  overflow: visible;
}
.category-nav__item {
  width: auto;
}
.category-nav__circle {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  max-width: 148px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .category-nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 14px;
  }
}
@media (max-width: 560px) {
  .category-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
  }
  .category-nav__circle {
    max-width: 132px;
  }
  .category-nav__item h3 {
    font-size: 12.5px;
  }
}

/* ---- Product cards: big image, heading-only body -------------------------- */
.card-media {
  aspect-ratio: 1/1;
}
.card-media img {
  padding: 14px;
}
.card-body {
  padding: 16px 18px 18px;
}
.card-body h3 {
  margin-bottom: 4px;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-title-link {
  color: var(--navy);
  transition: color 0.2s ease;
}
.card:hover .card-title-link {
  color: var(--red);
}
@media (max-width: 560px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .card-body {
    padding: 12px 12px 14px;
  }
  .card-body h3 {
    font-size: 13px;
  }
  /* Non-product grids (stats, quality-mark cards, etc.) always stack to one
     column on phones — the 2-up rule above is meant for product-card grids
     only, so it's overridden here for anything opted in explicitly. */
  .grid.grid-mobile-stack {
    grid-template-columns: 1fr !important;
  }
}
/* Category chip/supply grids stay single-column on very small phones for readability */
@media (max-width: 420px) {
  .grid-4#shop-grid,
  #shop-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---- Who We Supply: image on top, plain (no overlay), label below, left-aligned ---- */
.supply-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.supply-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.supply-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.supply-card:hover img {
  transform: scale(1.05);
}
.supply-card__label {
  display: block;
  padding: 14px 16px;
  text-align: left;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .supply-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---- Our Story: fading product-image carousel, no card shadow ----------- */
.story-fade {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.story-fade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 36px;
  opacity: 0;
  animation: story-fade-cycle 16s ease-in-out infinite;
}
@keyframes story-fade-cycle {
  0%, 100% { opacity: 0; }
  3%, 27% { opacity: 1; }
  30% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .story-fade img {
    animation: none;
    opacity: 1;
  }
  .story-fade img:not(:first-child) {
    display: none;
  }
}
.split .story-fade {
  box-shadow: none;
}
.split .story-fade:hover {
  transform: none;
  box-shadow: none;
}

/* ---- CTA banner: readable copy on navy, distinct icons ------------------- */
.cta-banner .cta-banner__lede,
.cta-banner .meta {
  color: rgba(255, 255, 255, 0.82);
}
.cta-banner__points li {
  color: rgba(255, 255, 255, 0.75);
}
.cta-banner__points svg {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Get In Touch: compact, single-view layout --------------------------- */
.contact-heading {
  margin-bottom: 6px;
}
.contact-detail {
  padding: 14px 0;
}

/* ---- Footer: legible on dark background, tidy grid ------------------------ */
.footer-top {
  /* longhand: this element also carries .container's horizontal padding */
  padding-top: 56px;
  padding-bottom: 32px;
  gap: 28px;
}
.footer-top p {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}
.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  opacity: 1;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .legal-links a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom .legal-links a:hover {
  color: var(--white);
}
@media (max-width: 900px) {
  .footer-top {
    padding-bottom: 24px;
  }
  .footer-bottom {
    padding-bottom: 90px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- Scroll-to-top button ------------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 94;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s, background-color 0.2s ease, color 0.2s ease;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.scroll-top-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 900px) {
  .scroll-top-btn {
    right: 16px;
    bottom: 148px;
    width: 40px;
    height: 40px;
  }
  /* Floating WhatsApp button is redundant with the mobile CTA bar */
  .whatsapp-float {
    display: none;
  }
}

/* ---- About page: stats band typing cursor + white labels ----------------- */
.stats-band__label {
  color: rgba(255, 255, 255, 0.85);
}
.stat-typing-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: stat-cursor-blink 1s step-end infinite;
}
@media (prefers-reduced-motion: reduce) {
  .stat-typing-cursor {
    animation: none;
  }
}
@keyframes stat-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---- About page: story copy sizing, standard-card icons ------------------ */
.story-copy {
  font-size: 14.5px;
  line-height: 1.7;
}
.standard-card .card-body {
  padding: 34px 28px;
  text-align: center;
}
.standard-card .card-body p {
  margin-top: 6px;
  color: var(--gray);
  font-size: var(--small);
  line-height: 1.6;
}
.standard-card .feature-icon {
  margin: 0 auto 16px;
}
.standard-card:hover {
  transform: translateY(-4px);
}

/* ---- About page: category chip grid (navy section) ------------------------ */
.category-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.category-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}
.category-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-3px);
}
.category-chip__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-chip__icon svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 900px) {
  .category-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Testimonials: superseded by the .testimonial-carousel rules in REDESIGN v5 ---- */

/* ---- Shop page: kill the phantom-gap caused by category anchor markers --- */
#shop-grid {
  position: relative;
}
#shop-grid > div[id] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* ---- Shop page: mobile "Need Help Choosing" card (hidden on desktop) ----- */
.mobile-help-card {
  display: none;
}
@media (max-width: 900px) {
  .mobile-help-card {
    display: block;
    margin-top: 24px;
  }
}

/* ==========================================================================
   REDESIGN v3 — second revision pass
   ========================================================================== */

/* ---- Eyebrow micro-labels removed sitewide ------------------------------- */
.eyebrow {
  display: none;
}

/* ---- Trust icons: static background, no hover state ---------------------- */
.trust-item:hover .trust-icon {
  background: #000;
  color: var(--white);
  transform: none;
}
.trust-item:hover {
  transform: none;
}

/* ---- Footer: fix oversized inline SVG icons ------------------------------- */
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a svg {
  flex: none;
  width: 15px;
  height: 15px;
}

/* ---- Mobile: stack the 4-up feature/trust grids one-per-row -------------- */
@media (max-width: 640px) {
  .trust-bar-grid,
  .why-ahs-grid,
  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }
  /* Trust bar: tight icon-led rows instead of tall stacked cards */
  .trust-bar-grid {
    gap: 2px;
  }
  .trust-item {
    padding: 14px 0;
  }
  /* Why AHS / Why Choose AHS / One Quality Mark: full-width cards, tighter padding */
  .feature-card,
  .standard-card .card-body {
    padding: 24px 22px;
  }
}

/* ---- Category chip grid: prevent overflow on narrow phones ---------------- */
.category-chip {
  min-width: 0;
}
.category-chip-grid {
  min-width: 0;
}
@media (max-width: 380px) {
  .category-chip {
    padding: 12px 14px;
    gap: 10px;
    font-size: 13px;
  }
  .category-chip__icon {
    width: 28px;
    height: 28px;
  }
  .category-chip__icon svg {
    width: 14px;
    height: 14px;
  }
}

/* ---- Stats band: single column on small phones ---------------------------- */
@media (max-width: 480px) {
  .stats-band .grid-4 {
    grid-template-columns: 1fr;
  }
  .stats-band__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stats-band__item:last-child {
    border-bottom: none;
  }
}

/* ---- Mission/Vision/Goal tabs: stack full-width instead of overflowing --- */
@media (max-width: 640px) {
  .tabs .tab-list {
    flex-wrap: wrap;
  }
  .pill-tabs .tab-list {
    display: flex;
    width: 100%;
  }
  .pill-tabs .tab-btn {
    flex: 1 1 0;
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
  }
}

/* ---- Catalogue CTA / contact card: no min-width overflow on phones ------- */
@media (max-width: 480px) {
  .catalogue-cta__text {
    min-width: 0;
  }
}

/* ---- Home hero: center heading/copy/CTAs on small phones ----------------- */
@media (max-width: 600px) {
  .hero-grid > div:first-child {
    text-align: center;
  }
  .hero-grid > div:first-child .eyebrow,
  .hero-grid > div:first-child .hero-ctas {
    justify-content: center;
  }
}
.contact-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .contact-card-body {
    padding: 24px 20px;
  }
}

/* ---- Shop: tighten the gap between the mobile help card and the next section */
@media (max-width: 900px) {
  .shop-results-section {
    padding-bottom: 24px;
  }
  .mobile-help-card {
    margin-top: 16px;
  }
  .shop-results-section + .section--tight {
    padding-top: 20px;
  }
}

/* ---- Hero: heading/lede/CTA fade up whenever a slide becomes active ------ */
.hero-slide h1,
.hero-slide .lede,
.hero-slide .hero-ctas {
  opacity: 0;
}
@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-slide.is-active h1 {
  animation: hero-text-in 0.7s var(--ease-out) 0.05s both;
}
.hero-slide.is-active .lede {
  animation: hero-text-in 0.7s var(--ease-out) 0.15s both;
}
.hero-slide.is-active .hero-ctas {
  animation: hero-text-in 0.7s var(--ease-out) 0.25s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide h1,
  .hero-slide .lede,
  .hero-slide .hero-ctas {
    opacity: 1;
    animation: none;
  }
}

/* ---- Floating call button (sits above WhatsApp) --------------------------- */
.call-float {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 94;
}
.call-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.call-float a:hover {
  transform: translateY(-3px);
}
.call-float svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 900px) {
  .call-float {
    display: none;
  }
  .scroll-top-btn {
    bottom: 148px;
  }
}
@media (min-width: 901px) {
  .scroll-top-btn {
    bottom: 148px;
  }
}

/* ---- Header search: live product suggestions ------------------------------ */
.header-search__results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 40;
}
.header-search__results.is-open {
  display: block;
}
.header-search__result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}
.header-search__result:hover {
  background: var(--silver-light);
}
.header-search__result img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: var(--silver-light);
  border-radius: var(--radius);
  flex: none;
}
.header-search__result span {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.3;
}
.header-search__empty {
  padding: 14px 10px;
  font-size: 13px;
  color: var(--gray);
}
@media (max-width: 900px) {
  .header-search__results {
    /* position:fixed with top/bottom both auto falls back to the element's static
       position, which sits off-screen above the header — anchor it explicitly below
       the sticky header instead. --header-h is kept in sync with the header's actual
       rendered height by main.js (it changes a few px when .is-scrolled shrinks it). */
    position: fixed;
    top: calc(var(--header-h, 112px) + 8px);
    left: 16px;
    right: 16px;
    width: auto;
  }
}

/* ---- PDP: accordion (replaces the tab strip) ------------------------------- */
.pdp-accordion {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.pdp-accordion-item {
  border-bottom: 1px solid var(--border);
}
.pdp-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}
.pdp-accordion-trigger .faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}
.pdp-accordion-trigger .faq-icon::before,
.pdp-accordion-trigger .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.pdp-accordion-trigger .faq-icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.pdp-accordion-trigger .faq-icon::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.pdp-accordion-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.pdp-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.pdp-accordion-panel > div {
  overflow: hidden;
}
.pdp-accordion-panel-inner {
  padding: 0 4px 20px;
}
.pdp-accordion-item.is-open .pdp-accordion-panel {
  grid-template-rows: 1fr;
}

/* ---- Homepage: catalogue PDF download menu -------------------------------- */
.catalogue-download {
  position: relative;
}
.catalogue-download__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 20;
}
.catalogue-download.is-open .catalogue-download__menu {
  display: block;
}
.catalogue-download__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--text);
  transition: background-color 0.2s ease;
}
.catalogue-download__menu a:hover {
  background: var(--silver-light);
}
@media (max-width: 640px) {
  .catalogue-download__menu {
    right: auto;
    left: 0;
    width: 100%;
    max-width: 300px;
  }
}

/* ---- PDP: sticky gallery column, gallery + thumbs fit one view ------------ */
@media (min-width: 901px) {
  .pdp-grid > div:first-child {
    position: sticky;
    top: calc(var(--gutter) + 88px);
    align-self: start;
  }
}
.pdp-gallery-main {
  aspect-ratio: 4/3;
}
.pdp-gallery-main img {
  padding: 24px;
}
.pdp-section {
  padding-top: 32px;
}
@media (max-width: 900px) {
  .pdp-section {
    padding-top: 24px;
  }
}

/* ==========================================================================
   REDESIGN v5 — shine headings, site-wide motion, mobile nav, carousel
   ========================================================================== */

/* ---- Heading shine (brushed-steel sweep) — light-on-light sections ------ */
.page-hero h1,
.section-head h2,
.contact-heading,
.cta-banner h2,
.catalogue-cta h2,
.hero h1 .shine {
  display: inline-block;
  background-image: linear-gradient(
    100deg,
    var(--navy) 0%,
    var(--navy) 42%,
    #ffffff 50%,
    var(--navy) 58%,
    var(--navy) 100%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heading-shine 6s ease-in-out infinite;
}
/* Hero heading: shine plays only across the main/key phrase, not the full line */
.hero h1 {
  color: var(--text);
}
/* dark sections need a light base + a soft steel-grey glint instead of white-on-white */
.section--navy .section-head h2,
.page-hero h1,
.cta-banner h2 {
  background-image: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 42%,
    #90a4b8 50%,
    #ffffff 58%,
    #ffffff 100%
  );
}
@keyframes heading-shine {
  0%, 15% {
    background-position: 200% 0;
  }
  55%, 100% {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero h1,
  .section-head h2,
  .contact-heading,
  .cta-banner h2,
  .catalogue-cta h2,
  .hero h1 .shine {
    animation: none;
    background: none;
    -webkit-text-fill-color: inherit;
    color: inherit;
  }
}

/* ---- Mobile nav: full backdrop so the drawer never shows page content behind it ---- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(15, 16, 18, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 901px) {
  .nav-backdrop {
    display: none;
  }
}
body.nav-open {
  overflow: hidden;
}
/* "Request a Quote" repeated inside the mobile drawer, under Contact */
.nav-links__quote {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}
@media (min-width: 901px) {
  .nav-links__quote {
    display: none;
  }
}

/* ---- Footer bottom: keep it centered on mobile instead of hugging the left edge ---- */
@media (max-width: 900px) {
  .footer-bottom {
    align-items: center;
    text-align: center;
  }
  .footer-bottom .legal-links {
    justify-content: center;
  }
}

/* ---- Testimonials: multi-item auto-sliding carousel (all breakpoints) ---- */
.testimonial-carousel {
  overflow: hidden;
}
.testimonial-carousel .testimonial-grid {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.testimonial-carousel .testimonial-card {
  flex: 0 0 100%;
}
@media (min-width: 561px) and (max-width: 900px) {
  .testimonial-carousel .testimonial-card {
    flex: 0 0 calc(50% - var(--sp-3) / 2);
  }
}
@media (min-width: 901px) {
  .testimonial-carousel .testimonial-card {
    flex: 0 0 calc((100% - 2 * var(--sp-3)) / 3);
  }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.testimonial-dot.is-active {
  width: 22px;
  background: var(--navy);
}

/* ---- New homepage/about section: "How AHS Works" process steps ---------- */
.process-steps {
  position: relative;
}
.process-step {
  position: relative;
}
.process-step__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.process-step__num svg {
  width: 19px;
  height: 19px;
}
.process-step h3 {
  margin-bottom: 6px;
}
.process-step p {
  color: var(--gray);
  font-size: var(--small);
}
@media (min-width: 901px) {
  .process-steps {
    position: relative;
  }
  .process-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
  }
}

/* =====================================================================
   Mobile refinements — hero CTA slider arrows, drawer header, section
   layout fixes (2026-09 review round)
   ===================================================================== */

/* ---- Hero: prev/next slider arrows flanking the CTA buttons (mobile) ----
   Buttons injected by initHeroSlider() into every slide's .hero-ctas.
   Desktop keeps the control-row arrows under the dots; on mobile the CTA
   row becomes a 3-track grid: arrow | stacked buttons | arrow. */
.hero-ctas__arrow {
  display: none;
}
@media (max-width: 900px) {
  .hero-slide .hero-ctas {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
  }
  .hero-slide .hero-ctas > .btn {
    grid-column: 2;
    width: 100%;
  }
  .hero-ctas__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .hero-ctas__arrow:hover {
    background: var(--silver-light);
    border-color: var(--navy);
  }
  .hero-ctas__arrow:active {
    transform: scale(0.94);
  }
  .hero-ctas__arrow svg {
    width: 18px;
    height: 18px;
  }
  .hero-ctas__arrow--prev {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .hero-ctas__arrow--next {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  /* Slide nav now lives beside the CTAs — drop the on-image arrows so there
     is only one set of controls on mobile. */
  .hero-art-arrow {
    display: none;
  }
}

/* ---- Hero: desktop prev/next arrows flanking the content ----------------
   Buttons injected by initHeroSlider() into .hero-slider-track. The track
   reserves an inner gutter on each side so the arrows sit clear of the
   heading / image, never on top of the text. The control-row arrows under
   the dots become redundant on desktop and are hidden. */
.hero-side-arrow {
  display: none;
}
@media (min-width: 901px) {
  .hero-slider-track {
    padding-inline: 68px;
  }
  .hero-side-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .hero-side-arrow:hover {
    background: var(--silver-light);
    border-color: var(--navy);
  }
  .hero-side-arrow:active {
    transform: translateY(-50%) scale(0.94);
  }
  .hero-side-arrow svg {
    width: 20px;
    height: 20px;
  }
  .hero-side-arrow--prev {
    left: 0;
  }
  .hero-side-arrow--next {
    right: 0;
  }
  /* Side arrows replace the control-row arrows on desktop; keep only the dots. */
  .hero-controls .hero-arrow {
    display: none;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-slider-track {
    padding-inline: 54px;
  }
  .hero-side-arrow {
    width: 42px;
    height: 42px;
  }
}

/* ---- Mobile drawer: keep the header bar docked above the drawer --------
   body.nav-open sets overflow:hidden, which makes the position:sticky
   .site-header snap back to its static (scrolled-away) position. Pin it to
   the viewport top while the drawer is open so the logo + close button
   stay visible above it. */
@media (max-width: 900px) {
  body.nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 61;
  }
  body.nav-open .announcement-bar,
  body.nav-open .preview-bar {
    display: none;
  }
}

/* ---- Process steps: single column + card treatment on mobile ----------
   Home "From Enquiry to Delivery" and About "Our Manufacturing Process"
   share .process-steps. On phones stack to one column and lay each step
   out as an icon/number + copy row. */
@media (max-width: 640px) {
  .process-steps.grid-4 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .process-steps .process-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
  }
  .process-steps .process-step__num {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
  .process-steps .process-step h3,
  .process-steps .process-step p {
    grid-column: 2;
  }
}

/* ---- Testimonials (non-carousel, e.g. Why Choose Us): one column on
   phones instead of the cramped 2-up product-grid fallback. */
@media (max-width: 640px) {
  .testimonial-grid.grid-3 {
    grid-template-columns: 1fr !important;
  }
}
