/* Innoview Solutions — polymer materials site */

:root {
  --ink: #0b1c28;
  --ink-soft: #1a3344;
  --muted: #5a6f7c;
  --paper: #eef3f6;
  --paper-deep: #e2e9ee;
  --white: #fafcfd;
  --accent: #c45c26;
  --accent-deep: #9a4418;
  --teal: #0e6b6e;
  --line: rgba(11, 28, 40, 0.12);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --max: 1080px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(238, 243, 246, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  position: relative;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  min-width: 0;
  flex-shrink: 0;
  z-index: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 2.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-logo {
  display: block;
  height: 2.65rem;
  width: auto;
  max-width: min(16rem, 62vw);
  object-fit: contain;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), #0a4f52);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0;
  display: block;
  margin-top: 0.1rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent);
}

/* —— Mega menu (Our Products) —— */
.has-mega {
  position: relative;
}

.nav-mega-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-mega-link::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.mega-panel {
  position: absolute;
  left: 0;
  top: 100%;
  width: min(56rem, calc(100vw - 2rem));
  /* padding-top bridges the gap so the cursor never leaves .has-mega */
  padding: 0.65rem 1.15rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(11, 28, 40, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), visibility 0.15s;
  z-index: 60;
}

/* Invisible hit area above the card (covers any remaining gap under the nav link) */
.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.85rem;
  height: 0.85rem;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.mega-top a {
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: var(--teal) !important;
}

.has-mega:hover > .nav-mega-link,
.has-mega.is-open > .nav-mega-link,
.has-mega.is-current > .nav-mega-link {
  color: var(--accent);
}

.mega-panel-sm {
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.55rem;
}

.mega-simple {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-simple a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mega-simple a:hover,
.mega-simple a.is-active {
  background: rgba(14, 107, 110, 0.08);
  color: var(--teal) !important;
}

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

.mega-col ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.mega-col li {
  margin: 0;
}

.mega-heading {
  display: block;
  font-family: var(--display);
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.mega-heading:hover {
  color: var(--accent) !important;
}

.mega-col a {
  display: block;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  padding: 0.28rem 0;
  line-height: 1.35;
}

.mega-col a:hover {
  color: var(--accent) !important;
}

.mega-more {
  font-weight: 700 !important;
  color: var(--teal) !important;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .site-header {
    z-index: 10000;
    overflow: visible;
    backdrop-filter: none;
    background: #eef3f6;
  }
  .nav-inner {
    position: relative;
    width: 100%;
    max-width: none;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 60;
  }
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
    flex-direction: column !important;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: #eef3f6;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(11, 28, 40, 0.12);
    max-height: min(75vh, calc(100dvh - var(--nav-h)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10001;
  }
  body.nav-open .nav-links {
    display: flex !important;
  }
  .nav-links > li {
    border-bottom: 1px solid var(--line);
  }
  .nav-links > li > a {
    display: block;
    padding: 0.85rem 0.15rem;
  }
  /* Mobile: arrow on the right so users know the item has a submenu */
  .nav-mega-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 0.35rem;
  }
  .nav-mega-link::after {
    content: "" !important;
    display: block !important;
    width: 0.55rem;
    height: 0.55rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(-45deg);
    opacity: 0.9;
    transition: transform 0.2s var(--ease), border-color 0.2s;
  }
  .has-mega.is-open > .nav-mega-link::after {
    transform: rotate(45deg);
    border-color: var(--teal);
  }
  .mega-panel {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    padding: 0 0 0.75rem 0.15rem;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    transform: none;
  }
  .mega-panel-sm {
    width: 100%;
    padding: 0 0 0.65rem 0.15rem;
  }
  .mega-top {
    justify-content: flex-start;
    margin: 0 0 0.45rem;
    padding: 0 0 0.45rem;
  }
  .mega-simple a {
    padding: 0.55rem 0.15rem;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
  }
  .mega-heading {
    font-size: 1.02rem !important;
    font-weight: 800 !important;
    padding: 0.15rem 0;
  }
  .mega-col a:not(.mega-heading):not(.mega-more) {
    font-weight: 500 !important;
    color: var(--muted) !important;
  }
  .mega-panel::before {
    display: none;
  }
  .has-mega.is-open .mega-panel {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  /* Hover must not force-open on touch / small screens */
  .has-mega:hover .mega-panel {
    display: none;
  }
  .has-mega.is-open .mega-panel {
    display: block;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(26rem, 64vh, 40rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0b1c28;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 19, 28, 0.96) 0%, rgba(10, 32, 42, 0.88) 42%, rgba(12, 40, 48, 0.55) 68%, rgba(14, 50, 56, 0.35) 100%),
    url("hero-masterbatch.jpg") right center / cover no-repeat,
    linear-gradient(155deg, #0d2430 0%, #143848 52%, #17505a 100%);
  transform: scale(1.02);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 2px),
    radial-gradient(circle at 28% 48%, rgba(196, 92, 38, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 18%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 62%, rgba(14, 107, 110, 0.65) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 78% 28%, rgba(255, 190, 120, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.12) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 35% 78%, rgba(196, 92, 38, 0.35) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 140px 140px, 260px 260px, 200px 200px, 160px 160px, 240px 240px, 120px 120px;
  animation: grainDrift 28s linear infinite;
}

@keyframes grainDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 180px 90px, -110px 160px, 70px -40px, -130px 80px, 100px -70px, -60px 120px, 90px 50px, -40px -30px; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.75rem 0 3.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    padding: 4.25rem 0 4rem;
  }
}

.hero-copy {
  max-width: 36rem;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 178, 122, 0.92);
  animation: riseIn 0.8s var(--ease) both;
}

.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1rem;
  animation: riseIn 0.8s var(--ease) 0.04s both;
}

.hero-brand em {
  font-style: normal;
  color: #f0b27a;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.28;
  max-width: 22ch;
  margin: 0 0 0.95rem;
  animation: riseIn 0.8s var(--ease) 0.1s both;
}

.hero-lead {
  max-width: 40ch;
  margin: 0 0 1.75rem;
  color: rgba(250, 252, 253, 0.8);
  font-size: 1.02rem;
  animation: riseIn 0.8s var(--ease) 0.16s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.8s var(--ease) 0.24s both;
}

.hero-visual {
  position: relative;
  justify-self: stretch;
  animation: riseIn 0.9s var(--ease) 0.18s both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -6% -10% -8%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 30%, rgba(240, 178, 122, 0.35), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(14, 107, 110, 0.45), transparent 50%);
  filter: blur(18px);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

@media (max-width: 899px) {
  .hero-visual {
    max-width: 28rem;
  }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Featured product slider —— */
.featured-slider-wrap {
  padding: 2.25rem 0 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.featured-slider-head {
  margin-bottom: 1.15rem;
}

.featured-slider-head h2 {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
}

.slider {
  position: relative;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.slider-viewport {
  overflow: hidden;
  margin: 0 2.4rem;
}

.slider-track {
  display: flex;
  gap: 1.1rem;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slider.is-auto .slider-track {
  transition: none;
  animation: sliderMarquee var(--slider-duration, 56s) linear infinite;
}

.slider.is-auto:hover .slider-track,
.slider.is-paused .slider-track {
  animation-play-state: paused;
}

@keyframes sliderMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--slider-loop, 50%))); }
}

@media (prefers-reduced-motion: reduce) {
  .slider.is-auto .slider-track {
    animation: none;
  }
}

.slider-card {
  flex: 0 0 clamp(11.5rem, 22vw, 15.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.slider-card-link {
  display: block;
}

.slider-figure {
  margin: 0;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}

.slider-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.slider-card:hover .slider-figure img {
  transform: scale(1.05);
}

.slider-caption {
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.slider-product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.slider-product-name:hover {
  color: var(--accent);
}

.slider-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  margin-top: auto;
  transition: background 0.2s;
}

.slider-cta-btn:hover {
  background: #0a5558;
}

.slider-btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 28, 40, 0.1);
  transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
  background: var(--ink);
  color: #fff;
}

.slider-btn-prev { left: 0; }
.slider-btn-next { right: 0; }

@media (max-width: 640px) {
  .slider-viewport {
    margin: 0 1.85rem;
  }
  .slider-card {
    flex-basis: 70vw;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
}

.btn-ink:hover {
  background: var(--ink-soft);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
}

/* —— Our Products category range —— */
.category-range {
  padding-top: clamp(2.5rem, 6vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
  background: var(--white);
}

.category-range-heading {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: none;
}

.category-range-heading a {
  color: var(--ink);
}

.category-range-heading a:hover {
  color: var(--accent);
}

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

.category-range-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  min-width: 0;
}

.category-range-figure {
  margin: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.category-range-media {
  display: block;
}

.category-range-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.category-range-card:hover .category-range-media img {
  transform: scale(1.04);
}

.category-range-products {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.category-range-products a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
}

.category-range-products a:hover {
  color: var(--accent);
}

.category-range-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.35rem 1rem 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
  transition: background 0.2s;
}

.category-range-viewall:hover {
  background: #0a5558;
}

.viewall-arrow {
  font-size: 0.78rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .category-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Products on home */
.product-rows {
  display: grid;
  gap: 0;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 1rem 2rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.product-row:last-child {
  border-bottom: 1px solid var(--line);
}

.product-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.product-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 500;
}

/* About */
.about-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .about-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: start;
  }
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem !important;
}

.about-links a {
  font-weight: 700;
  color: var(--teal);
}

.about-links a:hover {
  color: var(--accent);
}

/* Registration / directors */
.reg-layout {
  display: grid;
  gap: 1.25rem;
}

.reg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

.reg-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.reg-address {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42ch;
}

.reg-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

@media (min-width: 700px) {
  .reg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.1rem;
  }
}

@media (min-width: 980px) {
  .reg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.reg-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1.05rem;
}

.reg-grid dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.reg-grid dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.reg-status {
  display: inline-block;
  color: #1a9b4a;
}

.reg-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.reg-note a {
  font-weight: 700;
  color: var(--teal);
}

/* Testimonials / ratings */
.reviews-wrap {
  max-width: 920px;
}

.reviews-heading {
  margin: 0 0 1.35rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
}

.reviews-summary {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.15rem;
}

@media (min-width: 860px) {
  .reviews-summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
  }
}

.reviews-score-value {
  margin: 0;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews-score-value span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted);
}

.reviews-count {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.star-row {
  display: inline-flex;
  gap: 0.12rem;
  margin-top: 0.45rem;
}

.star-row.sm {
  margin-top: 0;
}

.star {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-block;
  background: #d5d9de;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.on {
  background: #f5b301;
}

.star.half {
  background: linear-gradient(90deg, #f5b301 50%, #d5d9de 50%);
}

.reviews-bars {
  display: grid;
  gap: 0.4rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr) 2.4rem;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.bar-row em {
  font-style: normal;
  text-align: right;
  color: var(--muted);
}

.bar {
  height: 0.55rem;
  border-radius: 999px;
  background: #eceff2;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: #1a9b4a;
  border-radius: inherit;
}

.sat-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.sat-gauges {
  display: flex;
  gap: 1.25rem;
}

.sat-gauge {
  --p: 100;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, #fff 62%, transparent 63%),
    conic-gradient(#f5b301 calc(var(--p) * 1%), #e6e9ec 0);
}

.sat-gauge strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sat-gauge span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.1rem;
}

.reviews-sort {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-sort select {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0.45rem 0.7rem;
  font: inherit;
  color: var(--ink);
}

.review-list {
  display: grid;
  gap: 0.9rem;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 12px;
  padding: 1rem 1.15rem 1.05rem;
}

.review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 1rem;
}

.review-who {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-who strong {
  color: var(--ink);
  font-weight: 700;
}

.review-who span {
  margin: 0 0.35rem;
  color: #c0c5cb;
}

.review-meta {
  margin: 0.45rem 0 0;
  color: #8b939c;
  font-size: 0.86rem;
}

.review-meta span {
  margin: 0 0.25rem;
}

.review-comment {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 68ch;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(26, 155, 74, 0.1);
  color: #1a9b4a;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-facts li {
  padding: 0.95rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
}

.about-facts strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.contact-block h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.contact-block p,
.contact-block a {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-block a {
  color: var(--teal);
  font-weight: 600;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(250, 252, 253, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.footer-inner strong {
  color: #fff;
  font-family: var(--display);
  font-weight: 650;
}

.footer-inner a {
  color: #f0b27a;
  font-weight: 600;
}

/* WhatsApp bubble */
.wa-bubble {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 28, 40, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPulse 2.8s ease-in-out infinite;
}

.wa-bubble:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(11, 28, 40, 0.28);
}

.wa-bubble svg {
  width: 30px;
  height: 30px;
}

.wa-bubble span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(11, 28, 40, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  55% { box-shadow: 0 10px 28px rgba(11, 28, 40, 0.22), 0 0 0 12px rgba(37, 211, 102, 0); }
}

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

/* —— Product pages —— */
.page-hero {
  padding: 2.75rem 0 1.5rem;
  background: linear-gradient(145deg, #e8eef2, #f7fafb 55%, #fff4eb);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 600;
}

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

.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
}

.cat-card h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
}

.cat-card h2 a:hover {
  color: var(--accent);
}

.cat-card ul {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.cat-card li a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.cat-card li a:hover {
  color: var(--accent);
}

.card-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
}

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

.product-tile {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-tile:hover {
  border-color: rgba(196, 92, 38, 0.35);
  box-shadow: 0 10px 28px rgba(11, 28, 40, 0.08);
  transform: translateY(-2px);
}

.product-tile-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.product-tile strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.product-tile-cta {
  margin-top: auto;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.product-visual {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(196, 92, 38, 0.25), transparent 50%),
    linear-gradient(145deg, #0e6b6e, #0b1c28);
}

.spec-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.spec-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.product-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  display: grid;
  gap: 0.65rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.product-aside h3 {
  margin: 0;
  font-family: var(--display);
}

.product-aside .btn {
  width: 100%;
  justify-content: center;
}

.aside-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.product-row h3 a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .cat-grid,
  .product-tile-grid,
  .product-detail,
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .product-aside {
    position: static;
  }
}

/* —— Category layout with left sidebar —— */
.cat-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .cat-layout {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.cat-sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 0.85rem);
  max-height: calc(100dvh - var(--nav-h) - 1.5rem);
  overflow-y: auto;
}

.cat-sidebar-block + .cat-sidebar-block {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.cat-side-home {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal);
}

.cat-side-tree {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cat-side-group + .cat-side-group {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.cat-side-link {
  display: block;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cat-side-subs {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0 0 0 0.65rem;
  border-left: 2px solid rgba(14, 107, 110, 0.18);
}

.cat-side-sub {
  display: block;
  padding: 0.32rem 0.45rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.cat-side-link:hover,
.cat-side-sub:hover {
  color: var(--accent);
  background: rgba(14, 107, 110, 0.06);
}

.cat-side-link.is-active,
.cat-side-group.is-open > .cat-side-link {
  color: var(--accent);
}

.cat-side-sub.is-active {
  color: var(--accent);
  background: rgba(196, 92, 38, 0.1);
  font-weight: 700;
}

@media (max-width: 959px) {
  .cat-sidebar {
    position: static;
    max-height: none;
  }
}

/* —— Category product listing (rich) —— */
.cat-strip {
  margin: 0 0 1.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
}

.cat-strip-track {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0.1rem 0.5rem;
  min-width: min-content;
}

.cat-strip-card {
  flex: 0 0 9.5rem;
}

.cat-strip-card a {
  display: grid;
  gap: 0.45rem;
  text-align: center;
  color: var(--ink);
}

.cat-strip-media {
  display: grid;
  place-items: center;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #eef3f5;
  overflow: hidden;
}

.cat-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cat-strip-name {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-strip-price {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
}

.prod-list {
  display: grid;
  gap: 1.5rem;
}

.prod-card {
  display: grid;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

@media (min-width: 860px) {
  .prod-card {
    grid-template-columns: 22rem minmax(0, 1fr);
    align-items: start;
    padding: 1.35rem;
  }
}

.prod-card-title {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.prod-card-title a:hover {
  color: var(--accent);
}

.prod-price {
  margin: 0 0 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.prod-price-amt {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.prod-price-unit {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.prod-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.prod-specs th,
.prod-specs td {
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prod-specs th {
  width: 42%;
  color: var(--muted);
  font-weight: 600;
}

.prod-specs td {
  color: var(--ink-soft);
  font-weight: 600;
}

.prod-desc {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.prod-desc p {
  margin: 0;
}

.prod-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.prod-actions .btn {
  justify-content: center;
}

.prod-btn-light {
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.prod-card-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.prod-card-meta a {
  color: var(--teal);
  font-weight: 600;
}

.prod-gallery {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 860px) {
  .prod-gallery {
    grid-template-columns: 4.5rem 18rem;
    align-items: start;
  }
}

.prod-thumbs {
  display: flex;
  gap: 0.45rem;
  order: 2;
}

@media (min-width: 860px) {
  .prod-thumbs {
    flex-direction: column;
    order: 0;
  }
}

.prod-thumb {
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto;
}

.prod-thumb.is-active {
  border-color: var(--teal);
}

.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #eef3f5;
}

.prod-stages {
  position: relative;
  width: 100%;
  max-width: min(18rem, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f3f7f8;
  overflow: hidden;
  margin-inline: auto;
}

.prod-stage {
  display: none;
  margin: 0;
  width: 100%;
  height: 100%;
}

.prod-stage.is-active {
  display: grid;
  place-items: center;
}

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

.prod-stage--empty {
  background: linear-gradient(145deg, #e8eef2, #f7fafb);
}

/* —— Site-wide mobile responsive —— */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.cat-main,
.prod-card,
.prod-card-media,
.prod-card-body,
.prod-gallery,
.hero-inner,
.about-layout,
.contact-layout {
  min-width: 0;
}

@media (max-width: 959px) {
  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .nav-inner {
    width: 100%;
    max-width: none;
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .brand-logo {
    height: 2.15rem;
    max-width: min(13rem, 68vw);
  }

  .page-hero {
    padding: 1.75rem 0 1.15rem;
  }

  .page-hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.15;
    word-break: break-word;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-lead,
  .breadcrumb {
    font-size: 0.9rem;
  }

  .cat-layout {
    gap: 1rem;
  }

  .cat-sidebar {
    position: static;
    max-height: none;
    padding: 0.75rem;
  }

  /* Keep sidebar compact: only show open category’s submenus */
  .cat-side-group:not(.is-open) .cat-side-subs {
    display: none;
  }

  .cat-side-group + .cat-side-group {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
  }

  .cat-strip-card {
    flex: 0 0 7.5rem;
  }

  .cat-strip-media {
    width: 7.5rem;
    height: 7.5rem;
  }

  .prod-card {
    grid-template-columns: 1fr;
    padding: 0.95rem;
    gap: 1rem;
    border-radius: 12px;
  }

  .prod-gallery {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .prod-thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
    max-width: 100%;
  }

  .prod-stages {
    order: 1;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-inline: 0;
  }

  .prod-thumb {
    width: 3.5rem;
    height: 3.5rem;
  }

  .prod-card-title {
    font-size: 1.1rem;
  }

  .prod-price-amt {
    font-size: 1.25rem;
  }

  .prod-specs {
    font-size: 0.84rem;
    display: block;
  }

  .prod-specs tbody,
  .prod-specs tr,
  .prod-specs th,
  .prod-specs td {
    display: block;
    width: 100%;
  }

  .prod-specs th {
    padding-bottom: 0.1rem;
    border-bottom: 0;
  }

  .prod-specs td {
    padding-top: 0;
    padding-bottom: 0.65rem;
    word-break: break-word;
  }

  .prod-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .prod-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  .product-tile-grid,
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 1.5rem));
    padding: 2.5rem 0 2.25rem;
  }

  .hero-cta {
    display: grid;
    gap: 0.65rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .wa-bubble {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.7rem 0.85rem;
  }

  .wa-bubble span {
    display: none;
  }

  .footer-inner {
    text-align: center;
    gap: 0.5rem;
  }

  .sat-gauges {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .mega-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.1rem);
  }

  .prod-card {
    padding: 0.8rem;
  }

  .prod-specs th,
  .prod-specs td {
    padding-left: 0;
    padding-right: 0;
  }
}
