/* ===================================================
   style.css — Cleaned & de-duplicated
   Original had 2672 lines with repeated overrides.
   This version keeps only the final authoritative rule
   for each selector (superseded v46–v72 image hacks removed).
=================================================== */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600;700&display=swap");

:root {
  --ink: #0c1324;
  --ink-2: #172033;
  --muted: #64748b;
  --soft: #f5f8fb;
  --soft-2: #eef5f7;
  --surface: #ffffff;
  --line: #dde8ee;
  --line-2: #edf3f6;
  --brand: #0b7886;
  --brand-2: #0ea6a9;
  --brand-soft: #e8fbfa;
  --navy: #071522;
  --navy-2: #0a2433;
  --gold: #b58b3b;
  --green: #15803d;
  --amber: #c77700;
  --shadow: 0 22px 65px rgba(7, 21, 34, 0.1);
  --shadow-sm: 0 10px 30px rgba(7, 21, 34, 0.07);
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --font-display:
    "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-mono:
    "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --font: var(--font-body);
  /* Premium theme additions */
  --premium-dark: #061522;
  --premium-dark-2: #092536;
  --premium-teal: #087884;
  --premium-teal-2: #13c2b3;
  --premium-gold: #c79b47;
  --premium-ice: #f7fbfc;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbfd 0, #fff 45%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  border: 0;
  background: none;
}
.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 14px;
  top: -120px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus {
  top: 14px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.09;
  font-weight: 800;
}
h1 {
  font-size: clamp(42px, 5.6vw, 72px);
}
h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}
h3 {
  font-size: 22px;
}
p {
  margin: 0 0 16px;
  color: var(--muted);
}
.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
}
.kicker:before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section {
  padding: 86px 0;
}
.section-sm {
  padding: 58px 0;
}
.dark-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
.dark-section h2,
.dark-section h3 {
  color: #fff;
}
.dark-section p {
  color: #bfd0da;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.section-head > p {
  max-width: 560px;
}
.section-action {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  color: inherit;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 21, 34, 0.16);
}
.btn-dark:hover {
  background: #0d2032;
  box-shadow: 0 18px 36px rgba(7, 21, 34, 0.22);
}
.btn-primary {
  background: linear-gradient(135deg, #19d6c3, #0b9aaa);
  color: #06242b;
  box-shadow: 0 14px 34px rgba(14, 166, 169, 0.22);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(7, 21, 34, 0.05);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}
.btn-ghost {
  background: #f5f8fb;
  color: var(--ink);
  border-color: var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.top-bar {
  background: var(--navy);
  color: #d7e6ee;
  font-size: 12px;
}
.top-bar-inner {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-bar a {
  color: #fff;
  margin-left: 22px;
  font-weight: 600;
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 205px;
}
.brand img {
  width: 205px;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 700;
  color: #1a2638;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-open,
.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 17px;
}
.search-open {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.quote-link {
  background: var(--navy);
  color: #fff;
}
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #26d7c5;
  color: #05272b;
  font-size: 11px;
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.search-panel {
  position: fixed;
  top: 106px;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.search-panel-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}
.search-panel input {
  flex: 1;
}
.search-close {
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #95d7da;
  box-shadow: 0 0 0 4px rgba(14, 166, 169, 0.1);
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.full {
  grid-column: 1/-1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 86px;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(24, 214, 195, 0.26),
      transparent 32%
    ),
    linear-gradient(135deg, #061321 0%, #0a2637 55%, #0b3b43 100%);
}
.hero:before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
  position: relative;
}
.hero h1 {
  color: #fff;
  max-width: 830px;
}
.hero p {
  font-size: 18px;
  color: #d7eaf0;
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #eafaff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}
.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 38px;
  padding: 18px;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.25);
}
.hero-card-inner {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  color: var(--ink);
}
.hero-card img {
  border-radius: 24px;
  background: #effcff;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.quick-stats div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
}
.quick-stats strong {
  display: block;
  font-size: 22px;
  color: var(--ink);
}
.quick-stats span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.page-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at 86% 0, rgba(24, 214, 195, 0.25), transparent 34%),
    linear-gradient(135deg, #061321, #0a2637);
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 4.8vw, 64px);
}
.page-hero p {
  color: #d7eaf0;
  max-width: 840px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #98cfd1;
  margin-bottom: 10px;
}
.breadcrumbs a {
  color: inherit;
  font-weight: 700;
}
.page-hero .breadcrumbs a {
  color: #fff;
}

.grid {
  display: grid;
  gap: 22px;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.category-card,
.feature-card,
.content-card,
.quote-box,
.policy-card,
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
/* ============================================================
   Catalogue product cards
   All card presentation and responsive layout lives in CSS.
============================================================ */
.product-grid,
.product-family-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 14px;
  gap: 9px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #bfe5e8;
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb);
  border: 1px solid #dcecf0;
  border-radius: 20px;
}

.product-media img,
.product-media .product-main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  border: 0;
  border-radius: 18px;
  transform: none;
}

.product-media .product-hover-img,
.product-media .stock-pill,
.product-media .image-count-pill,
.product-hover-panel,
.compare-btn {
  display: none;
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: none;
}

.product-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: auto;
  padding: 0;
}

.product-body .eyebrow,
.product-body p {
  display: none;
}

.product-body h3 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.product-body h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-body h3 a:hover {
  color: var(--brand);
}

.product-card-price {
  margin-top: 0;
  color: #0b7886;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-card-price.no-price {
  display: none;
}

.product-family-grid .product-card:nth-child(n + 7) {
  display: none;
}

@media (max-width: 1120px) {
  .product-grid,
  .product-family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-grid,
  .product-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.category-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.category-card {
  overflow: hidden;
}
.category-card .category-img-wrap {
  display: block;
  width: calc(100% + 36px);
  margin: -18px -18px 0 -18px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid #dcecf0;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb);
}
.category-card .category-img-wrap img,
.category-card > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover !important;
  object-position: center center;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.category-card h3,
.feature-card h3,
.content-card h3 {
  font-size: 21px;
}
.link-arrow {
  font-weight: 800;
  color: var(--brand);
  margin-top: auto;
}
.feature-card,
.content-card,
.quote-box,
.policy-card,
.info-panel {
  padding: 24px;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.article-card {
  line-height: 1.8;
}

.toolbar-wrap {
  margin-top: -28px;
  position: relative;
  z-index: 3;
}
.toolbar {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.7fr 0.65fr;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.results-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin: 20px 0 22px;
  color: var(--muted);
  font-size: 13px;
}
.view-actions {
  display: flex;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}
.pagination-note {
  margin-top: 24px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  color: #475569;
  font-size: 13px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  gap: 46px;
  align-items: start;
}
.product-gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 108px;
}
.product-gallery img {
  border-radius: 26px;
  background: #f4fdff;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.gallery-note span {
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  text-align: center;
}
.product-detail {
  padding-top: 8px;
}
.product-detail h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.product-detail > p {
  font-size: 17px;
  color: #334155;
  max-width: 760px;
}
.quote-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.quote-label {
  display: inline-flex;
  align-items: center;
  background: var(--brand-soft);
  color: #006a76;
  border: 1px solid #cceef1;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
}
.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 800;
  font-size: 12px;
  background: #dcfce7;
  color: #166534;
}
.badge.preorder {
  background: #ffedd5;
  color: #9a3412;
}
.sku-box {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #516070;
  font-weight: 700;
}
.mini-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.mini-trust div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(7, 21, 34, 0.045);
}
.mini-trust strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 5px;
}
.mini-trust span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.quantity-row {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.qty-input {
  width: 96px;
  padding: 11px 12px;
}
.notice {
  background: #f0f7ff;
  border: 1px solid #c7ddff;
  color: #1e3a8a;
  border-radius: 18px;
  padding: 15px 16px;
  margin: 18px 0;
}
.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-check li {
  position: relative;
  padding-left: 28px;
  margin: 9px 0;
  color: #475569;
}
.list-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.spec-table th,
.spec-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.spec-table th {
  width: 34%;
  background: #f8fbfd;
  color: #0f1f33;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}
.sticky-quote {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 80;
  width: min(100% - 34px, 800px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 12px 14px 12px 22px;
}
.sticky-quote span {
  color: var(--muted);
  font-size: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fff;
}
.cart-item img {
  border-radius: 14px;
  background: #eef8fa;
}
.cart-item button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}
.empty-state {
  text-align: center;
  padding: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
}
.site-footer {
  background: var(--navy);
  color: #d7e6ee;
  padding: 60px 0 28px;
  margin-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 0.9fr;
  gap: 32px;
}
.footer-logo {
  margin-bottom: 16px;
}
.site-footer h3 {
  color: #fff;
  font-size: 17px;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: #b9cbd5;
  font-size: 14px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 9px 0;
}
.site-footer a:hover {
  color: #fff;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  margin-top: 34px;
}
.footer-bottom p {
  font-size: 12px;
  margin: 0;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 78;
  background: #18c45a;
  color: #062212;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  box-shadow: 0 15px 34px rgba(24, 196, 90, 0.28);
}

@media (max-width: 1120px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-grid,
  .product-layout,
  .split {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: static;
  }
  .toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-trust {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 940px) {
  .top-bar {
    display: none;
  }
  .nav-inner {
    height: 74px;
  }
  .brand {
    min-width: 176px;
  }
  .brand img {
    width: 176px;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 84px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-menu.open,
  body.nav-open .nav-menu,
  .nav-toggle[aria-expanded="true"] + .nav-menu {
    display: flex;
  }
  .nav-actions {
    margin-left: auto;
  }
  .search-panel {
    top: 74px;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding: 58px 0;
  }
  .section-sm {
    padding: 42px 0;
  }
  .hero {
    padding: 66px 0;
  }
  .hero p {
    font-size: 16px;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid,
  .toolbar,
  .footer-grid,
  .quick-stats,
  .mini-trust,
  .gallery-note {
    grid-template-columns: 1fr;
  }
  .section-head,
  .results-line,
  .footer-bottom {
    display: block;
  }
  .nav-actions .search-open {
    display: none;
  }
  .brand img {
    width: 158px;
  }
  .quote-link {
    padding: 9px 12px;
  }
  .quantity-row .btn,
  .quantity-row .qty-input {
    width: 100%;
  }
  .cart-item {
    grid-template-columns: 74px 1fr;
  }
  .cart-item button {
    grid-column: 1/-1;
  }
  .sticky-quote {
    display: none;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
  }
  .page-hero h1,
  .product-detail h1 {
    font-size: 34px;
  }
}

.layout-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 4px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px 14px;
  box-shadow: 0 10px 28px rgba(7, 21, 34, 0.045);
}
.layout-control {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 185px;
}
.layout-control label {
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  font-weight: 800;
  white-space: nowrap;
}
.layout-control select {
  height: 40px;
  min-width: 120px;
  border-radius: 999px;
  padding: 0 34px 0 13px;
  font-size: 12px;
  font-weight: 800;
  background-color: #fff;
  color: var(--ink);
}
.layout-hint {
  margin-left: auto;
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}
body.product-list-mode .layout-toolbar {
  opacity: 0.55;
}

@media (max-width: 1120px) {
  .layout-hint {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 680px) {
  .layout-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }
  .layout-control {
    display: block;
    min-width: 0;
  }
  .layout-control label {
    display: block;
    margin: 0 0 7px;
  }
  .layout-control select {
    width: 100%;
    min-width: 0;
  }
  .layout-hint {
    grid-column: 1/-1;
    font-size: 11px;
  }
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.045em;
  font-weight: 800;
}
.nav-menu a,
.btn,
.search-open,
.quote-link {
  font-weight: 750;
  letter-spacing: -0.015em;
}
.site-header {
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(6, 21, 34, 0.09);
  background: rgba(255, 255, 255, 0.96);
}
.top-bar {
  background: #06131f;
}
.top-bar-inner {
  height: 32px;
}
.brand img {
  width: 196px;
}
.nav-inner {
  height: 78px;
}
.nav-menu {
  gap: 27px;
}
.search-open,
.quote-link {
  font-size: 14px;
  padding: 12px 18px;
}
.quote-link {
  background: #051321;
}
.cart-count {
  background: linear-gradient(135deg, #28e4cd, #0aa0a9);
  color: #042126;
}
.btn {
  border-radius: 999px;
  min-height: 44px;
  padding: 12px 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-dark {
  background: #051321;
}
.btn-primary {
  background: linear-gradient(135deg, #18dcc8, #0b9cac);
  color: #04242a;
}
.btn-light,
.btn-ghost {
  background: #fff;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.luxury-hero {
  min-height: 640px;
  background:
    radial-gradient(
      circle at 72% 15%,
      rgba(19, 194, 179, 0.33),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(199, 155, 71, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #05111d 0%, #0a2231 54%, #063d42 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  opacity: 0.6;
}
.hero-orb-one {
  right: 8%;
  top: 12%;
  width: 150px;
  height: 150px;
  background: rgba(24, 214, 195, 0.13);
  animation: floatOrb 7s ease-in-out infinite;
}
.hero-orb-two {
  left: 4%;
  bottom: 10%;
  width: 110px;
  height: 110px;
  background: rgba(199, 155, 71, 0.12);
  animation: floatOrb 9s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}
.premium-device-card {
  position: relative;
  overflow: hidden;
}
.premium-device-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.62),
    rgba(19, 194, 179, 0.12)
  );
  pointer-events: none;
  border-radius: inherit;
}
.premium-device-card img,
.glass-stats {
  position: relative;
}
.glass-stats div {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
.marquee-section {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeLeft 28s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfc);
  border-radius: 999px;
  padding: 8px 14px;
  color: #334155;
  font-weight: 800;
  font-size: 12px;
}
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.premium-band {
  background: linear-gradient(135deg, #ffffff, #eefafa);
  border-block: 1px solid var(--line);
}
.premium-split {
  align-items: center;
}
.mini-feature-grid {
  gap: 14px;
}
.mini-feature {
  display: flex;
  gap: 13px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(6, 21, 34, 0.06);
}
.mini-feature strong {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: #e8fbfa;
  color: #00737f;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.mini-feature span {
  color: #2d3b4f;
  font-weight: 700;
  line-height: 1.45;
}
.luxury-dark {
  position: relative;
  overflow: hidden;
}
.luxury-dark:before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(19, 194, 179, 0.12);
}
.luxury-dark .container {
  position: relative;
}
.dark-section .feature-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}
.dark-section .feature-card h3 {
  color: #071522;
}
.dark-section .feature-card p {
  color: #405266;
}
.dark-section .feature-icon {
  background: #e6fbf8;
  color: #067681;
}
.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-card p {
  font-size: 15px;
  color: #52657a;
}
.feature-card h3 {
  letter-spacing: -0.03em;
}
.process-section {
  background: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8fbfc);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  min-height: 235px;
}
.process-card:after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(19, 194, 179, 0.11);
}
.process-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #e9fbf9;
  color: #007785;
  font-weight: 900;
  margin-bottom: 48px;
}
.process-card h3 {
  font-size: 22px;
}
.process-card p {
  color: #52657a;
}
.review-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f6fbfc);
}
.review-marquee {
  overflow: hidden;
  width: 100%;
}
.review-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewScroll 42s linear infinite;
  padding: 4px 0 20px;
}
.review-marquee:hover .review-marquee-track {
  animation-play-state: paused;
}
@keyframes reviewScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.review-card {
  width: 380px;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(6, 21, 34, 0.07);
}
.review-card .stars {
  color: #c79b47;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.review-card p {
  color: #334155;
  font-size: 15px;
}
.review-card strong {
  display: block;
  color: #071522;
  margin-top: 18px;
}
.review-card span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 18px;
  box-shadow: 0 12px 30px rgba(6, 21, 34, 0.045);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: #071522;
}
.faq-list p {
  margin-top: 10px;
  margin-bottom: 0;
}
.luxury-cta {
  background:
    radial-gradient(circle at 85% 0, rgba(24, 214, 195, 0.2), transparent 28%),
    linear-gradient(135deg, #051321, #0a2739);
  color: #fff;
}
.luxury-cta h2,
.luxury-cta .eyebrow {
  color: #fff;
}
.luxury-cta p {
  color: #d6e8ee;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .marquee-track,
  .review-marquee-track,
  .hero-orb {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.layout-toolbar {
  display: none !important;
}
.product-view-tools {
  display: none;
}
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: #fff;
  color: #071522;
  border-radius: 999px;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6, 21, 34, 0.04);
  transition: 0.18s ease;
}
.icon-chip:hover {
  border-color: #bfe5e8;
  box-shadow: 0 14px 30px rgba(6, 21, 34, 0.09);
  transform: translateY(-1px);
}
.icon-chip svg {
  fill: none;
  stroke: #0b7886;
  stroke-width: 2;
}
.layout-popover-wrap {
  position: relative;
}
.layout-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  width: 230px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(6, 21, 34, 0.15);
  padding: 12px;
}
.layout-options {
  display: grid;
  grid-template-columns: 1fr repeat(4, 42px);
  gap: 8px;
  align-items: center;
}
.layout-options span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #64748b;
}
.layout-options button {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  color: #071522;
}
.layout-options button.active {
  background: #071522;
  color: #fff;
  border-color: #071522;
}
.layout-mobile-options {
  display: none;
}
.results-line {
  align-items: center;
  margin: 22px 0;
}
.results-line > span {
  font-size: 14px;
  color: #52657a;
}
.pagination-note {
  background: #fff;
  color: #405266;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(6, 21, 34, 0.045);
}
.product-detail h1 {
  font-size: clamp(34px, 4vw, 54px);
}
.gallery-note {
  grid-template-columns: repeat(2, 1fr);
}
.quote-label {
  background: #e9fbf9;
  color: #00747f;
}
.mini-trust strong,
.mini-trust span {
  display: block !important;
}
.notice {
  background: linear-gradient(180deg, #f7fbff, #f0f7ff);
}

@media (max-width: 1120px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 940px) {
  .brand img {
    width: 174px;
  }
  .nav-inner {
    height: 74px;
  }
  .review-card {
    width: 320px;
  }
  .hero-grid {
    gap: 34px;
  }
}
@media (max-width: 680px) {
  .grid-2,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .product-view-tools {
    margin-top: 12px;
  }
  .results-line {
    display: block;
  }
  .layout-popover {
    right: auto;
    left: 0;
    width: 210px;
  }
  .layout-desktop-options {
    display: none;
  }
  .layout-mobile-options {
    display: grid;
    grid-template-columns: 1fr repeat(2, 42px);
  }
  .review-card {
    width: 286px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .marquee-track {
    animation-duration: 22s;
  }
  .footer-badges span {
    font-size: 10px;
  }
}

.section-xs {
  padding: 32px 0;
}
.catalogue-category-section {
  background: linear-gradient(180deg, #f7fbfc, #ffffff);
  border-bottom: 1px solid rgba(216, 229, 235, 0.68);
}
.catalogue-category-header {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1.4fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dce9ee;
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(6, 21, 34, 0.075);
}
.catalogue-category-header:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(19, 194, 179, 0.13);
  pointer-events: none;
}
.category-header-copy {
  position: relative;
  z-index: 1;
}
.category-header-copy h2 {
  font-size: clamp(26px, 2.4vw, 38px);
  margin: 7px 0 8px;
}
.category-header-copy p {
  margin: 0;
  color: #52657a;
  line-height: 1.7;
  max-width: 520px;
}
.category-pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.category-pill-row::-webkit-scrollbar {
  height: 6px;
}
.category-pill-row::-webkit-scrollbar-thumb {
  background: #c7d7df;
  border-radius: 999px;
}
.category-pill {
  scroll-snap-align: start;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border: 1px solid #d9e7ed;
  background: linear-gradient(180deg, #fff, #f8fbfc);
  border-radius: 20px;
  padding: 14px 15px;
  text-align: left;
  cursor: pointer;
  color: #071522;
  box-shadow: 0 10px 28px rgba(6, 21, 34, 0.045);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.category-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(6, 21, 34, 0.09);
  border-color: #a9dce0;
}
.category-pill.active {
  background: linear-gradient(135deg, #061522, #0b3a46);
  border-color: #061522;
  color: #fff;
  box-shadow: 0 20px 54px rgba(6, 21, 34, 0.16);
}
.category-pill span {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.category-pill small {
  font-size: 11px;
  font-weight: 800;
  color: #668095;
}
.category-pill.active small {
  color: #aeeae5;
}
.products-listing-section {
  padding-top: 32px;
}
.single-category-context {
  background: linear-gradient(180deg, #f8fbfc, #ffffff);
  padding-bottom: 0;
}
.single-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dce9ee;
  border-radius: 28px;
  padding: 20px 22px;
  box-shadow: 0 18px 50px rgba(6, 21, 34, 0.065);
}
.single-category-header h2 {
  font-size: clamp(24px, 2.2vw, 36px);
  margin: 5px 0 6px;
}
.single-category-header p {
  margin: 0;
  color: #52657a;
  max-width: 760px;
}
.category-link-chip {
  white-space: nowrap;
  border: 1px solid #d7e7ec;
  background: #fff;
  color: #071522;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(6, 21, 34, 0.045);
}
.category-link-chip:hover {
  background: #061522;
  color: #fff;
  border-color: #061522;
}
.product-detail-section {
  padding-top: 34px;
}
@media (max-width: 940px) {
  .catalogue-category-header {
    grid-template-columns: 1fr;
  }
  .category-pill {
    min-width: 170px;
  }
  .single-category-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .category-link-chip {
    white-space: normal;
  }
}
@media (max-width: 680px) {
  .section-xs {
    padding: 22px 0;
  }
  .catalogue-category-header {
    border-radius: 24px;
    padding: 18px;
  }
  .category-pill-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .category-pill {
    min-width: 0;
    padding: 12px;
    border-radius: 16px;
  }
  .category-pill span {
    font-size: 11.5px;
  }
  .category-pill small {
    font-size: 10px;
  }
  .single-category-header {
    border-radius: 22px;
    padding: 18px;
  }
  .category-link-chip {
    width: 100%;
    text-align: center;
  }
}
.quote-label.has-price {
  font-size: 26px;
  background: linear-gradient(135deg, #061522, #0b3a46);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  box-shadow: 0 14px 34px rgba(6, 21, 34, 0.14);
}
.quote-label.no-price {
  background: #e9fbf9;
  color: #00747f;
}
.cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 34px;
  padding: 46px 52px;
  box-shadow: 0 26px 70px rgba(6, 21, 34, 0.13);
}
.cta > div,
.cta > a {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  margin-bottom: 14px;
}
.cta p {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: #d6e8ee;
}
.cta .eyebrow {
  margin-bottom: 16px;
}
.luxury-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.luxury-cta:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(24, 214, 195, 0.18);
  filter: blur(2px);
  pointer-events: none;
}
.luxury-cta:after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(199, 155, 71, 0.12);
  pointer-events: none;
}
.site-footer .footer-bottom p:last-child {
  color: #9fb5c2;
}
.product-detail .notice {
  font-weight: 650;
  color: #17345a;
}
@media (max-width: 940px) {
  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 30px;
  }
  .cta h2 {
    font-size: clamp(30px, 7vw, 48px);
  }
}
@media (max-width: 680px) {
  .cta {
    border-radius: 26px;
    padding: 30px 22px;
  }
  .cta p {
    font-size: 15px;
  }
  .quote-label.has-price {
    font-size: 21px;
  }
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #f4fdff;
}
.product-gallery-main > img {
  display: block;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.product-gallery-main > img.is-changing {
  opacity: 0.45;
  transform: scale(0.985);
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumb {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 5px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 21, 34, 0.05);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.gallery-thumb img {
  display: block;
  width: 100%;
  height: 78px !important;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  background: #f4fdff;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #0b7d89;
  box-shadow: 0 12px 26px rgba(0, 124, 137, 0.13);
  transform: translateY(-2px);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(7, 21, 34, 0.18);
  font-size: 30px;
  line-height: 1;
  color: #071522;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.18s ease;
}
.gallery-arrow:hover {
  background: #071522;
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}
.gallery-prev {
  left: 14px;
}
.gallery-next {
  right: 14px;
}
@media (max-width: 680px) {
  .product-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }
  .gallery-thumb {
    min-width: 92px;
    scroll-snap-align: start;
  }
  .gallery-thumb img {
    height: 64px !important;
  }
  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}
.category-pill-row {
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}
@media (max-width: 680px) {
  .category-pill-row {
    max-height: 330px;
  }
}
.product-gallery {
  padding: 18px;
}
.product-gallery-main {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line-2);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
}
.product-gallery-main > img,
.product-gallery img#productMainImage {
  width: 100%;
  height: 100%;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: 22px;
  background: #fff;
}
.product-gallery-main > img.is-changing {
  opacity: 0.55;
  transform: none !important;
}
.product-thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-thumb img {
  object-fit: contain !important;
  background: #fff;
  height: 74px !important;
}
.gallery-note {
  display: none !important;
}
@media (max-width: 680px) {
  .product-gallery-main {
    padding: 12px;
    border-radius: 24px;
  }
  .product-thumbs {
    display: flex;
  }
  .gallery-thumb img {
    height: 62px !important;
  }
}

.page-hero-compact {
  padding-bottom: 46px;
}
.products-listing-section {
  padding-top: 38px;
}
.refined-toolbar {
  margin-bottom: 18px;
}
.product-results-line {
  margin: 4px 0 22px;
}
.catalogue-category-section {
  display: none !important;
}
.catalogue-strip {
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  border: 1px solid #dbe9ef;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 22px 60px rgba(6, 21, 34, 0.07);
  margin: 10px 0 32px;
  overflow: hidden;
}
.catalogue-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}
.catalogue-strip-head h2 {
  font-size: clamp(22px, 2vw, 34px);
  margin: 5px 0 0;
  letter-spacing: -0.04em;
}
.catalogue-strip-head p {
  margin: 0;
  color: #52657a;
  max-width: 620px;
  line-height: 1.65;
}
.category-strip-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 4px 12px;
  scrollbar-width: thin;
}
.category-strip-row::-webkit-scrollbar {
  height: 7px;
}
.category-strip-row::-webkit-scrollbar-thumb {
  background: #bed2dc;
  border-radius: 999px;
}
.category-strip-card {
  scroll-snap-align: start;
  flex: 0 0 268px;
  text-align: left;
  border: 1px solid #d8e7ed;
  border-radius: 20px;
  background: #fff;
  padding: 16px 17px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(6, 21, 34, 0.045);
  transition: 0.22s ease;
  color: #071522;
}
.category-strip-card span {
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.category-strip-card small {
  font-weight: 900;
  color: #0a7b87;
}
.category-strip-card em {
  font-style: normal;
  color: #60758b;
  font-size: 12.5px;
  line-height: 1.45;
}
.category-strip-card:hover {
  transform: translateY(-3px);
  border-color: #a9dce0;
  box-shadow: 0 20px 42px rgba(6, 21, 34, 0.1);
}
.category-strip-card.active {
  background: linear-gradient(135deg, #061522, #083b46);
  border-color: #061522;
  color: #fff;
}
.category-strip-card.active small {
  color: #5df4e8;
}
.category-strip-card.active em {
  color: #c8eef0;
}
.category-showcase {
  display: grid;
  gap: 28px;
}
.category-showcase[hidden],
.filtered-catalogue[hidden] {
  display: none !important;
}
.product-family-section {
  border: 1px solid #dce8ee;
  background: linear-gradient(180deg, #fff, #f9fcfd);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(6, 21, 34, 0.06);
}
.family-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}
.family-head h2 {
  font-size: clamp(25px, 2.2vw, 38px);
  margin: 4px 0 7px;
  letter-spacing: -0.045em;
}
.family-head p {
  max-width: 860px;
  margin: 0;
  color: #52657a;
  line-height: 1.68;
}
.family-link {
  flex: 0 0 auto;
}
.filtered-head {
  margin: 18px 0;
}
.filtered-head h2 {
  font-size: clamp(25px, 2vw, 36px);
  margin: 0 0 6px;
}
.filtered-head p {
  margin: 0;
  color: #60758b;
}
.filtered-catalogue {
  animation: fadeInCatalogue 0.2s ease;
}
@keyframes fadeInCatalogue {
  from {
    opacity: 0.35;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .catalogue-strip-head,
  .family-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .category-strip-card {
    flex-basis: 240px;
  }
  .family-link {
    width: 100%;
    text-align: center;
  }
  .catalogue-strip {
    border-radius: 22px;
    padding: 16px;
  }
  .product-family-section {
    border-radius: 24px;
    padding: 18px;
  }
}
@media (max-width: 620px) {
  .category-strip-card {
    flex-basis: 220px;
    min-height: 118px;
  }
  .category-strip-card span {
    font-size: 13px;
  }
  .category-strip-card em {
    font-size: 11.5px;
  }
  .product-family-section {
    padding: 15px;
  }
  .catalogue-strip-head h2,
  .family-head h2 {
    letter-spacing: -0.035em;
  }
  .catalogue-strip-head p {
    font-size: 14px;
  }
}
.layout-popover {
  width: 240px;
}
.layout-options span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #476178;
}
.layout-options button.active {
  background: linear-gradient(135deg, #061522, #083b46);
  box-shadow: 0 10px 22px rgba(6, 21, 34, 0.16);
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }
  .product-detail-section {
    padding-top: 18px;
    overflow-x: hidden;
  }
  .product-layout {
    display: block !important;
    width: 100%;
    max-width: 100%;
  }
  .product-gallery {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 38px rgba(7, 21, 34, 0.09) !important;
    margin: 0 0 24px !important;
    overflow: hidden !important;
  }
  .product-gallery-main {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1/1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
  }
  .product-gallery-main > img,
  .product-gallery img#productMainImage {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: min(72vw, 360px) !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 16px !important;
    transform: none !important;
  }
  .product-gallery-main > img.is-changing {
    opacity: 0.55 !important;
    transform: none !important;
  }
  .product-thumbs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    max-width: 100% !important;
    margin: 10px -2px 0 !important;
    padding: 0 2px 8px !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-thumb {
    flex: 0 0 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    border-radius: 14px !important;
    scroll-snap-align: start !important;
  }
  .gallery-thumb img {
    width: 100% !important;
    height: 58px !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 10px !important;
  }
  .gallery-arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 22px !important;
  }
  .gallery-prev {
    left: 10px !important;
  }
  .gallery-next {
    right: 10px !important;
  }
  .product-detail h1 {
    font-size: clamp(28px, 8.8vw, 38px) !important;
    line-height: 1.08 !important;
    word-break: normal !important;
  }
  .product-detail > p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
  .product-detail .breadcrumbs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    font-size: 13px !important;
  }
  .mini-trust {
    grid-template-columns: 1fr !important;
  }
  .sticky-quote {
    width: calc(100% - 22px) !important;
    bottom: 10px !important;
    border-radius: 18px !important;
    padding: 10px 12px !important;
    align-items: flex-start !important;
  }
  .sticky-quote span {
    display: none !important;
  }
  .whatsapp-float {
    right: 12px !important;
    bottom: 82px !important;
    padding: 10px 13px !important;
    font-size: 13px !important;
    z-index: 77 !important;
  }
}
@media (max-width: 390px) {
  .gallery-thumb {
    flex-basis: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
  }
  .gallery-thumb img {
    height: 54px !important;
  }
  .product-gallery-main > img,
  .product-gallery img#productMainImage {
    max-height: 310px !important;
  }
}

@media (max-width: 760px) {
  .product-detail-section {
    padding: 16px 0 46px !important;
    overflow-x: hidden !important;
  }
  .product-detail-section > .container.product-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow-x: hidden !important;
  }
  .single-category-context > .container,
  .product-detail-section + .section-sm > .container,
  .product-detail-section ~ .section-sm > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 22px !important;
    padding: 10px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }
  .product-gallery-main {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1/1 !important;
    padding: 10px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }
  .product-gallery-main > img,
  .product-gallery img#productMainImage {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: calc(100vw - 54px) !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .product-thumbs {
    margin: 10px 0 0 !important;
    padding: 0 0 8px !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain !important;
  }
  .gallery-thumb {
    flex: 0 0 74px !important;
    min-width: 74px !important;
    max-width: 74px !important;
    height: 66px !important;
  }
  .gallery-thumb img {
    height: 54px !important;
  }
  .gallery-prev {
    left: 8px !important;
  }
  .gallery-next {
    right: 8px !important;
  }
  .product-detail {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 2px !important;
    overflow-wrap: anywhere !important;
  }
  .product-detail .breadcrumbs {
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
  }
  .product-detail .eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.13em !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
  }
  .product-detail h1 {
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.045em !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
  .product-detail > p {
    font-size: 15px !important;
    line-height: 1.68 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }
  .quote-status {
    gap: 9px !important;
    margin: 18px 0 !important;
    align-items: flex-start !important;
  }
  .quote-label,
  .badge {
    padding: 9px 12px !important;
    font-size: 13px !important;
  }
  .sku-box {
    width: 100% !important;
    font-size: 13px !important;
    overflow-wrap: anywhere !important;
  }
  .mini-trust {
    gap: 10px !important;
    margin: 16px 0 !important;
  }
  .mini-trust div {
    padding: 14px !important;
    border-radius: 17px !important;
  }
  .quantity-row {
    display: block !important;
    margin: 18px 0 !important;
  }
  .quantity-row label {
    display: block !important;
    margin-bottom: 8px !important;
  }
  .quantity-row .qty-input,
  .quantity-row .btn {
    width: 100% !important;
    margin: 0 0 10px !important;
    min-height: 50px !important;
  }
  .notice {
    font-size: 14px !important;
    line-height: 1.6 !important;
    padding: 14px !important;
    border-radius: 17px !important;
  }
  .spec-table {
    display: block !important;
    overflow-x: auto !important;
    border-radius: 18px !important;
  }
  .spec-table th,
  .spec-table td {
    padding: 12px !important;
    font-size: 13px !important;
  }
  body:has(.product-detail-section) .whatsapp-float {
    display: none !important;
  }
}
@media (max-width: 390px) {
  .product-detail-section > .container.product-layout {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .product-detail h1 {
    font-size: clamp(27px, 8.5vw, 32px) !important;
  }
  .gallery-thumb {
    flex-basis: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
  }
}

/* ============================================================
   HOMEPAGE CATEGORY GRID + SOCIAL PROOF + ELITE/PREMIUM HERO
   + CATALOGUE + CART + FONT OVERRIDES
   (v58 block, contains all non-image component additions)
============================================================ */
/* v58: homepage category cards - 5 columns desktop, 2 columns mobile, image + title + button only */
.home-category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.home-category-grid .category-card {
  padding: 0 !important;
  border-radius: 22px !important;
  gap: 0 !important;
  min-height: 100%;
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.055) !important;
  overflow: hidden !important;
}
.home-category-grid .category-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 12px !important;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
  border-bottom: 1px solid #dcecf0 !important;
}
.home-category-grid .category-card h3 {
  font-size: 15px !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  padding: 10px 12px 0 !important;
}
.home-category-grid .category-card p {
  display: none !important;
}
.home-category-grid .category-card .link-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  margin-top: auto !important;
  color: #05707c !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  padding: 8px 12px 12px !important;
}
@media (max-width: 1120px) {
  .home-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 900px) {
  .home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .home-category-grid .category-card {
    padding: 0 !important;
    border-radius: 18px !important;
    gap: 0 !important;
    overflow: hidden !important;
  }
  .home-category-grid .category-card img {
    aspect-ratio: 1/1 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
  }
  .home-category-grid .category-card h3 {
    font-size: 12.5px !important;
    line-height: 1.18 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 30px;
    padding: 8px 10px 0 !important;
    margin: 0 !important;
  }
  .home-category-grid .category-card .link-arrow {
    font-size: 11px !important;
    padding: 6px 10px 10px !important;
  }
}

.category-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
}
.category-card-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1/1 !important;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
  border: 0 !important;
  border-bottom: 1px solid #dcecf0 !important;
  border-radius: var(--radius) var(--radius) 0 0 !important;
  overflow: hidden !important;
}

.home-category-grid .category-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1/1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
  border: 0 !important;
  border-bottom: 1px solid #dcecf0 !important;
  border-radius: 0 !important;
  transform: none !important;
}
@media (max-width: 680px) {
  .home-category-grid .category-card img {
    aspect-ratio: 1/1 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
  }
}

.category-card-media,
.category-card img,
.home-category-grid .category-card img {
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
}

.category-directory-section .category-pro-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.category-directory-section .category-pro-card {
  padding: 0 !important;
  border-radius: 22px !important;
  gap: 0 !important;
  overflow: hidden !important;
}
.category-directory-section .category-card-media {
  border-radius: 22px 22px 0 0 !important;
  border-bottom: 1px solid #dcecf0 !important;
  border: 0 !important;
}
.category-directory-section .category-pro-card h3 {
  font-size: 14px !important;
  line-height: 1.22 !important;
  padding: 10px 12px 0 !important;
  margin: 0 !important;
}
.category-directory-section .category-pro-card p {
  font-size: 11.5px !important;
  line-height: 1.4 !important;
  -webkit-line-clamp: 2 !important;
  padding: 4px 12px 0 !important;
  margin: 0 !important;
}
.category-directory-section .category-pro-card .link-arrow {
  padding: 8px 12px 12px !important;
}
@media (max-width: 1120px) {
  .category-directory-section .category-pro-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 940px) {
  .category-directory-section .category-pro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  .category-directory-section .category-pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .category-directory-section .category-pro-card h3 {
    font-size: 12.5px !important;
    padding: 8px 10px 0 !important;
  }
  .category-directory-section .category-pro-card p {
    padding: 3px 10px 0 !important;
  }
  .category-directory-section .category-pro-card .link-arrow {
    padding: 6px 10px 10px !important;
  }
}

.top-bar-inner {
  overflow: hidden !important;
  gap: 18px !important;
}
.top-marquee {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  white-space: nowrap;
}
.top-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: topTickerMove 32s linear infinite;
  will-change: transform;
}
.top-marquee-track span {
  position: relative;
  color: #d7e6ee;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}
.top-marquee-track span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -18px;
  color: #7fded9;
  opacity: 0.8;
}
@keyframes topTickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.top-bar:hover .top-marquee-track {
  animation-play-state: paused;
}
@media (max-width: 940px) {
  .top-bar {
    display: block !important;
  }
  .top-bar-inner {
    height: 32px !important;
  }
  .top-bar-inner > div:last-child {
    display: none !important;
  }
  .top-marquee-track span {
    font-size: 11px;
  }
}

.article-content h2,
.article-card h2 {
  margin-top: 8px;
}
.article-content h2:not(:first-child) {
  margin-top: 28px;
}
.article-content p,
.article-card p {
  font-size: 15px;
  line-height: 1.78;
}
.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}
.dark-card h3 {
  color: #fff !important;
}
.dark-card p {
  color: #c6d8df !important;
  margin-bottom: 0;
}

.product-detail .quantity-row .btn-light,
.sticky-quote .btn-dark {
  font-weight: 850 !important;
}

.product-social-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 16px;
}
.trust-score-card,
.recent-buyer-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe8ee;
  border-radius: 999px;
  padding: 8px 13px;
  box-shadow: 0 14px 34px rgba(6, 21, 34, 0.07);
}
.trust-score-stars {
  display: inline-flex;
  gap: 3px;
}
.trust-score-stars i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #00b67a;
  color: #fff;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
}
.trust-score-card strong,
.recent-buyer-card strong {
  color: #071522;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
}
.trust-score-card > span:last-child {
  color: #52657a;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.buyer-avatars {
  display: flex;
  align-items: center;
  min-width: 64px;
}
.buyer-avatars i {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: -9px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #e9fbf9, #d8eef8);
  box-shadow: 0 8px 18px rgba(6, 21, 34, 0.09);
}
.buyer-avatars i:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #e9fbf9, #bff3ee);
}
.buyer-avatars i:nth-child(2) {
  background: linear-gradient(135deg, #fff8df, #e5f1ff);
}
.buyer-avatars i:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0b7886;
  box-shadow: 0 10px 0 2px #0b7886;
  transform: translateY(-5px);
}
.recent-buyer-card small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}
.product-heading-ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 2px 0 16px;
  border: 1px solid #cfe7ec;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #effbfb, #ffffff);
  box-shadow: 0 12px 28px rgba(6, 21, 34, 0.055);
}
.product-heading-ticker:before,
.product-heading-ticker:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.product-heading-ticker:before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.product-heading-ticker:after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}
.product-heading-ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 9px 0;
  animation: productHeadingScroll 22s linear infinite;
  will-change: transform;
}
.product-heading-ticker:hover .product-heading-ticker-track {
  animation-play-state: paused;
}
.product-heading-ticker span,
.product-heading-ticker b {
  color: #0a4b56;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-heading-ticker b {
  color: #b58b3b;
}
@keyframes productHeadingScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.enhanced-mini-trust div {
  position: relative;
  overflow: hidden;
}
.enhanced-mini-trust div:after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(14, 166, 169, 0.09);
}
.product-urgency-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 18px;
  padding: 16px;
  border: 1px solid #cfe7ec;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(24, 214, 195, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #ffffff, #f5fbfc);
  box-shadow: 0 14px 36px rgba(6, 21, 34, 0.065);
}
.live-activity {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-items: center;
}
.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: livePulse 1.65s ease-out infinite;
}
.live-activity strong {
  color: #071522;
  font-size: 15px;
  line-height: 1.2;
}
.live-activity small {
  grid-column: 2;
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}
@keyframes livePulse {
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.quote-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid #dce9ee;
  border-radius: 14px;
  background: #fff;
  color: #0b3445;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.conversion-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 12px;
}
.conversion-benefits div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: start;
  min-height: 86px;
  padding: 13px;
  border: 1px solid #dbe8ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(6, 21, 34, 0.045);
}
.conversion-benefits span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #e9fbf9;
  color: #007785;
  font-weight: 900;
}
.conversion-benefits strong {
  color: #071522;
  font-size: 12.5px;
  line-height: 1.25;
}
.conversion-benefits small {
  grid-column: 2;
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}
@media (max-width: 760px) {
  .product-social-proof {
    gap: 9px;
    margin: 6px 0 14px;
  }
  .trust-score-card,
  .recent-buyer-card {
    width: 100%;
    border-radius: 18px;
    justify-content: flex-start;
    padding: 10px 12px;
  }
  .trust-score-card {
    flex-wrap: wrap;
  }
  .trust-score-card strong,
  .recent-buyer-card strong,
  .trust-score-card > span:last-child {
    white-space: normal;
  }
  .trust-score-stars i {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .product-heading-ticker {
    border-radius: 16px;
    margin-bottom: 14px;
  }
  .product-heading-ticker-track {
    animation-duration: 17s;
  }
  .product-heading-ticker span,
  .product-heading-ticker b {
    font-size: 10.5px;
  }
  .quote-steps,
  .conversion-benefits {
    grid-template-columns: 1fr;
  }
  .product-urgency-panel {
    padding: 14px;
    border-radius: 18px;
  }
  .live-activity strong {
    font-size: 14px;
  }
  .conversion-benefits {
    gap: 9px;
    margin-top: 14px;
  }
  .conversion-benefits div {
    min-height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-heading-ticker-track,
  .live-dot {
    animation: none !important;
  }
}

.elite-home-hero {
  isolation: isolate;
  min-height: 0;
  padding: 92px 0 84px;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(31, 220, 205, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(181, 139, 59, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 86%,
      rgba(19, 194, 179, 0.2),
      transparent 34%
    ),
    linear-gradient(135deg, #040b14 0%, #061726 43%, #082c35 100%);
}
.elite-home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.14));
  pointer-events: none;
}
.elite-home-hero:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: min(960px, 76vw);
  height: 340px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(25, 214, 195, 0.16),
    transparent 68%
  );
  pointer-events: none;
}
.elite-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0 52%,
      rgba(255, 255, 255, 0.055) 52.2%,
      transparent 52.8%
    ),
    linear-gradient(
      18deg,
      transparent 0 66%,
      rgba(19, 194, 179, 0.1) 66.2%,
      transparent 67%
    );
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}
.elite-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}
.elite-glow-one {
  right: 8%;
  top: 16%;
  width: 210px;
  height: 210px;
  background: rgba(25, 214, 195, 0.13);
  animation: eliteFloat 8s ease-in-out infinite;
}
.elite-glow-two {
  left: 6%;
  bottom: 16%;
  width: 150px;
  height: 150px;
  background: rgba(181, 139, 59, 0.11);
  animation: eliteFloat 10s ease-in-out infinite reverse;
}
@keyframes eliteFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}
.elite-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  gap: 62px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.elite-hero-copy {
  max-width: 760px;
}
.elite-hero-copy .kicker {
  color: #7af8ee;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.elite-hero-copy .kicker:before {
  background: linear-gradient(90deg, var(--gold), #f1d995);
}
.elite-hero-copy h1 {
  font-size: clamp(48px, 5.35vw, 78px);
  letter-spacing: -0.064em;
  line-height: 1.01;
  margin-bottom: 20px;
  color: #fff;
  text-wrap: balance;
}
.elite-hero-lead {
  font-size: 18px !important;
  line-height: 1.78;
  color: #d8e9ef !important;
  max-width: 700px;
  margin-bottom: 0;
}
.elite-hero-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  max-width: 670px;
}
.elite-hero-search span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #aaf8f2;
  font-size: 22px;
  font-weight: 900;
}
.elite-hero-search input {
  border: 0;
  background: transparent !important;
  color: #fff;
  box-shadow: none !important;
  padding: 12px 4px;
}
.elite-hero-search input::placeholder {
  color: #a9c7d2;
}
.elite-hero-search button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #20dac6, #0b9aaa);
  color: #05272e;
  font-weight: 900;
  padding: 14px 20px;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(14, 166, 169, 0.25);
}
.elite-hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.elite-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.elite-category-pills a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
  color: #efffff;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 850;
  transition: 0.2s ease;
}
.elite-category-pills a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(122, 248, 238, 0.4);
}
.elite-hero-visual {
  position: relative;
}
.elite-panel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.075)
  );
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  padding: 22px;
  backdrop-filter: blur(18px);
}
.elite-panel-shell:before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(236, 252, 251, 0.84)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  z-index: 0;
}
.elite-panel-shell:after {
  content: "";
  position: absolute;
  right: -110px;
  top: -95px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 194, 179, 0.2), transparent 68%);
  z-index: 0;
}
.elite-panel-shell > * {
  position: relative;
  z-index: 1;
}
.elite-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 8px 8px 16px;
  color: #0b1d2c;
}
.elite-panel-top div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.elite-panel-top strong {
  font-size: 13px;
}
.elite-panel-top > span {
  border-radius: 999px;
  background: #e8fbfa;
  color: #087b86;
  border: 1px solid #c8f0ee;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14c784;
  box-shadow: 0 0 0 7px rgba(20, 199, 132, 0.13);
  display: inline-block;
}
.elite-panel-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}
.elite-main-stat,
.elite-mini-stats div {
  border: 1px solid #d7e9ef;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(7, 21, 34, 0.07);
}
.elite-main-stat {
  padding: 20px;
}
.elite-main-stat span,
.elite-main-stat small,
.elite-mini-stats span {
  display: block;
  color: #617489;
  font-size: 12px;
  font-weight: 800;
}
.elite-main-stat strong {
  display: block;
  color: #081827;
  font-size: 48px;
  line-height: 1;
  margin: 8px 0 9px;
  letter-spacing: -0.05em;
}
.elite-mini-stats {
  display: grid;
  gap: 12px;
}
.elite-mini-stats div {
  padding: 16px;
  text-align: center;
}
.elite-mini-stats strong {
  display: block;
  font-size: 28px;
  color: #081827;
  letter-spacing: -0.04em;
}
.elite-product-stack {
  position: relative;
  height: 270px;
  margin: 18px 0;
}
.elite-product-tile {
  position: absolute;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  width: min(430px, 88%);
  padding: 12px;
  border-radius: 24px;
  border: 1px solid #d9e8ee;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(7, 21, 34, 0.12);
  transition: 0.22s ease;
  color: #0b1726;
}
.elite-product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(7, 21, 34, 0.16);
}
.elite-product-tile img {
  width: 82px;
  height: 82px;
  object-fit: contain !important;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5fbfd, #eaf7f8);
  padding: 8px;
  border: 1px solid #e2eff3;
}
.elite-product-tile span {
  display: block;
  color: #0b8b94;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.elite-product-tile strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #0b1726;
  margin-top: 3px;
}
.elite-tile-1 {
  left: 0;
  top: 6px;
}
.elite-tile-2 {
  right: 0;
  top: 92px;
}
.elite-tile-3 {
  left: 42px;
  bottom: 0;
}
.elite-flow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.elite-flow-row div {
  border: 1px solid #d6e7ec;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f4fbfc);
  padding: 13px;
  text-align: center;
}
.elite-flow-row b {
  display: block;
  color: #b58b3b;
  font-size: 12px;
  margin-bottom: 3px;
}
.elite-flow-row span {
  display: block;
  color: #213448;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}
@media (max-width: 1120px) {
  .elite-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .elite-hero-copy {
    max-width: 850px;
  }
  .elite-hero-visual {
    max-width: 720px;
  }
  .elite-panel-shell {
    margin-inline: auto;
  }
  .elite-hero-copy h1 {
    max-width: 820px;
  }
}
@media (max-width: 720px) {
  .elite-home-hero {
    padding: 58px 0 56px;
  }
  .elite-hero-grid {
    gap: 30px;
  }
  .elite-hero-copy h1 {
    font-size: 40px;
    letter-spacing: -0.055em;
  }
  .elite-hero-lead {
    font-size: 15.5px !important;
    line-height: 1.72;
  }
  .elite-hero-search {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 12px;
  }
  .elite-hero-search span {
    display: none;
  }
  .elite-hero-search input {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #081827;
    border-radius: 16px;
    padding: 13px 14px;
  }
  .elite-hero-search input::placeholder {
    color: #64748b;
  }
  .elite-hero-search button {
    width: 100%;
    padding: 13px;
  }
  .elite-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .elite-category-pills {
    gap: 8px;
  }
  .elite-category-pills a {
    font-size: 11px;
    padding: 8px 10px;
  }
  .elite-panel-shell {
    border-radius: 30px;
    padding: 14px;
  }
  .elite-panel-shell:before {
    inset: 8px;
    border-radius: 24px;
  }
  .elite-panel-main {
    grid-template-columns: 1fr;
  }
  .elite-main-stat strong {
    font-size: 40px;
  }
  .elite-product-stack {
    height: auto;
    display: grid;
    gap: 10px;
    margin: 14px 0;
  }
  .elite-product-tile {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 70px minmax(0, 1fr);
    border-radius: 20px;
  }
  .elite-product-tile img {
    width: 70px;
    height: 70px;
  }
  .elite-flow-row {
    grid-template-columns: 1fr;
  }
  .elite-panel-top {
    display: block;
  }
  .elite-panel-top > span {
    display: inline-flex;
    margin-top: 8px;
  }
}

.catalogue-results {
  position: relative;
  min-height: 220px;
}
.catalogue-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 12px;
  color: #52657a;
  font-weight: 800;
}
.catalogue-loader[hidden] {
  display: none;
}
.catalogue-loader span {
  width: 22px;
  height: 22px;
  border: 3px solid #cfe1e7;
  border-top-color: #0a7b87;
  border-radius: 50%;
  animation: catalogueSpin 0.75s linear infinite;
}
.catalogue-loader p {
  margin: 0;
}
.catalogue-sentinel {
  height: 2px;
}
.catalogue-end {
  text-align: center;
  margin: 26px 0 4px;
  padding: 14px;
  color: #60758b;
  font-weight: 800;
  border-top: 1px solid #e3edf1;
}
.catalogue-end[hidden] {
  display: none;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.inquiry-feedback {
  margin: 0 0 18px;
}
.inquiry-feedback.success {
  border-color: #95dec6;
  background: #effcf7;
  color: #075f49;
}
.inquiry-feedback.error {
  border-color: #f0b5b5;
  background: #fff5f5;
  color: #8c2525;
}
@keyframes catalogueSpin {
  to {
    transform: rotate(360deg);
  }
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 6px;
}
.cart-qty label {
  font-size: 12px;
  font-weight: 800;
  color: #52657a;
}
.cart-qty input {
  width: 76px;
  padding: 7px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}
.cart-summary .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cart-summary-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.cart-summary .cart-whatsapp-link {
  color: #168b43;
  font-weight: 800;
  border-color: #25d366;
}
.cart-clear-button {
  width: 100%;
  margin-top: 14px;
  color: #64748b;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: 0;
}
@media (max-width: 800px) {
  #checkoutContent {
    flex-direction: column !important;
  }
  #checkoutContent > div {
    width: 100% !important;
    position: static !important;
  }
  .cart-qty input {
    width: 68px;
  }
}
.premium-home-hero-v42 {
  min-height: auto !important;
  padding: 74px 0 72px !important;
  background:
    radial-gradient(
      circle at 83% 16%,
      rgba(21, 216, 196, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 9% 86%,
      rgba(199, 155, 71, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, #05111d 0%, #071a29 48%, #083d43 100%) !important;
}
.premium-home-hero-v42:before {
  opacity: 0.45 !important;
}
.premium-home-hero-v42:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.055) 0 1px,
    transparent 1px 100%
  );
  background-size: 92px 92px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
.premium-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
  z-index: 1;
}
.premium-hero-orb-one {
  right: 12%;
  top: 13%;
  width: 170px;
  height: 170px;
  background: rgba(21, 216, 196, 0.12);
  animation: eliteFloat 8s ease-in-out infinite;
}
.premium-hero-orb-two {
  left: 7%;
  bottom: 12%;
  width: 120px;
  height: 120px;
  background: rgba(199, 155, 71, 0.1);
  animation: eliteFloat 10s ease-in-out infinite reverse;
}
.premium-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.92fr);
  gap: 54px;
  align-items: center;
}
.premium-hero-copy {
  max-width: 720px;
}
.premium-hero-copy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #78f6ed;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.4;
  margin-bottom: 18px;
}
.premium-hero-copy .kicker:before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, #c79b47, #f2dc9d);
}
.premium-hero-copy h1 {
  font-size: clamp(46px, 4.45vw, 66px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.066em !important;
  margin: 0 0 18px !important;
  color: #fff !important;
  max-width: 680px;
  text-wrap: balance;
}
.premium-hero-lead {
  font-size: 17px !important;
  line-height: 1.74 !important;
  color: #d8eaf0 !important;
  max-width: 650px;
  margin: 0 !important;
}
.premium-hero-search {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  max-width: 640px;
  margin-top: 27px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.21);
  backdrop-filter: blur(18px);
}
.premium-hero-search > span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #affff8;
  font-size: 22px;
  font-weight: 900;
}
.premium-hero-search input {
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  padding: 12px 4px !important;
}
.premium-hero-search input::placeholder {
  color: #a8c8d4;
}
.premium-hero-search button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #23deca, #0b99a9);
  color: #04232a;
  font-weight: 950;
  padding: 14px 20px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(20, 190, 191, 0.25);
  white-space: nowrap;
}
.premium-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.premium-trust-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.premium-trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
  color: #f0ffff;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 850;
}
.premium-hero-visual {
  position: relative;
}
.premium-procurement-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.17),
    rgba(255, 255, 255, 0.075)
  );
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  padding: 22px;
  backdrop-filter: blur(18px);
}
.premium-procurement-board:before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94),
    rgba(236, 252, 251, 0.86)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  z-index: 0;
}
.premium-procurement-board:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -105px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 194, 179, 0.2), transparent 68%);
  z-index: 0;
}
.premium-procurement-board > * {
  position: relative;
  z-index: 1;
}
.premium-board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 6px 6px 14px;
  color: #071827;
}
.premium-board-top div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.premium-board-top strong {
  font-size: 13px;
}
.premium-board-top em {
  font-style: normal;
  border-radius: 999px;
  background: #e9fbfa;
  color: #087b86;
  border: 1px solid #c8f0ee;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
}
.premium-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14c784;
  box-shadow: 0 0 0 7px rgba(20, 199, 132, 0.13);
  display: inline-block;
}
.premium-board-search-preview {
  border: 1px solid #d7e9ef;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  padding: 18px 19px;
  box-shadow: 0 16px 36px rgba(7, 21, 34, 0.07);
  margin-bottom: 13px;
}
.premium-board-search-preview span,
.premium-board-search-preview small {
  display: block;
  color: #617489;
  font-size: 12px;
  font-weight: 850;
}
.premium-board-search-preview strong {
  display: block;
  color: #081827;
  font-size: 21px;
  line-height: 1.16;
  margin: 6px 0 7px;
  letter-spacing: -0.035em;
}
.premium-board-metrics {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 11px;
  margin-bottom: 13px;
}
.premium-board-metrics div {
  border: 1px solid #d7e9ef;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  padding: 15px 12px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(7, 21, 34, 0.06);
}
.premium-board-metrics strong {
  display: block;
  color: #081827;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.045em;
}
.premium-board-metrics span {
  display: block;
  color: #617489;
  font-size: 11px;
  font-weight: 900;
  margin-top: 7px;
}
.premium-request-list {
  display: grid;
  gap: 9px;
}
.premium-request-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid #d9e8ee;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 11px 12px;
  color: #0b1726;
  box-shadow: 0 15px 32px rgba(7, 21, 34, 0.08);
  transition: 0.2s ease;
}
.premium-request-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(7, 21, 34, 0.12);
}
.premium-request-card > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #062130, #0d8e99);
  color: #eaffff;
  font-size: 12px;
  font-weight: 950;
}
.premium-request-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  color: #0a1726;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.premium-request-card small {
  display: block;
  color: #60758b;
  font-size: 11.5px;
  font-weight: 750;
  margin-top: 3px;
}
.premium-board-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 13px;
}
.premium-board-flow div {
  border: 1px solid #d6e7ec;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f4fbfc);
  padding: 12px;
  text-align: center;
}
.premium-board-flow b {
  display: block;
  color: #b58b3b;
  font-size: 11px;
  margin-bottom: 3px;
}
.premium-board-flow span {
  display: block;
  color: #213448;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
}
@media (max-width: 1180px) {
  .premium-home-hero-v42 {
    padding: 62px 0 !important;
  }
  .premium-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 32px;
  }
  .premium-hero-copy h1 {
    font-size: clamp(42px, 4.3vw, 56px) !important;
    max-width: 560px;
  }
  .premium-hero-lead {
    font-size: 15.8px !important;
    max-width: 560px;
  }
  .premium-board-metrics strong {
    font-size: 23px;
  }
  .premium-board-search-preview strong {
    font-size: 19px;
  }
}
@media (max-width: 980px) {
  .premium-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .premium-hero-copy {
    max-width: 820px;
  }
  .premium-hero-copy h1 {
    max-width: 760px;
  }
  .premium-hero-visual {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 680px) {
  .premium-home-hero-v42 {
    padding: 48px 0 50px !important;
  }
  .premium-hero-copy .kicker {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .premium-hero-copy h1 {
    font-size: 38px !important;
    line-height: 1.04 !important;
  }
  .premium-hero-lead {
    font-size: 15px !important;
  }
  .premium-hero-search {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 12px;
  }
  .premium-hero-search > span {
    display: none;
  }
  .premium-hero-search input {
    background: rgba(255, 255, 255, 0.94) !important;
    color: #081827 !important;
    border-radius: 15px !important;
    padding: 13px 14px !important;
  }
  .premium-hero-search input::placeholder {
    color: #64748b;
  }
  .premium-hero-search button {
    width: 100%;
    padding: 13px;
  }
  .premium-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .premium-trust-row span {
    width: 100%;
    text-align: center;
  }
  .premium-procurement-board {
    border-radius: 28px;
    padding: 14px;
  }
  .premium-procurement-board:before {
    inset: 8px;
    border-radius: 22px;
  }
  .premium-board-top {
    display: block;
  }
  .premium-board-top em {
    display: inline-flex;
    margin-top: 8px;
  }
  .premium-board-metrics {
    grid-template-columns: 1fr;
  }
  .premium-request-card strong {
    white-space: normal;
  }
  .premium-board-flow {
    grid-template-columns: 1fr;
  }
}

body {
  font-family: var(--font-body) !important;
  font-size: 15px;
  letter-spacing: -0.006em;
}
h1,
h2,
h3,
h4,
.brand,
.nav-menu a,
.btn,
.search-open,
.quote-link,
.premium-hero-copy h1,
.product-detail h1,
.category-card h3,
.feature-card h3,
.content-card h3 {
  font-family: var(--font-display) !important;
}
.kicker,
.eyebrow,
.top-bar,
.cart-count,
.quote-label.has-price,
.sku-box,
.qty-input,
.category-stats-row strong,
.category-page-count strong,
.premium-board-metrics strong,
.premium-board-flow b,
.premium-request-card > span,
.product-heading-ticker b,
.spec-table th,
.spec-table td:first-child {
  font-family: var(--font-mono) !important;
}
.btn-primary,
.premium-hero-search button {
  background: linear-gradient(135deg, #18d6c4, #0b9aaa) !important;
  color: #05252d !important;
  box-shadow: 0 16px 34px rgba(14, 166, 169, 0.24) !important;
}
.btn-primary:hover,
.premium-hero-search button:hover {
  background: linear-gradient(135deg, #27ead6, #088d9c) !important;
}
.btn-dark,
.quote-link {
  background: #051321 !important;
  color: #fff !important;
}
.product-badge,
.sale-badge,
.badge.sale {
  background: #f6e7c6 !important;
  color: #744c00 !important;
  border: 1px solid #ead39e !important;
}
.premium-home-hero-v42 {
  padding: 76px 0 72px !important;
}
.premium-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.88fr) !important;
  gap: 58px !important;
}
.premium-hero-copy {
  max-width: 760px !important;
}
.premium-hero-copy h1 {
  font-size: clamp(44px, 4.05vw, 62px) !important;
  line-height: 1.045 !important;
  letter-spacing: -0.052em !important;
  max-width: 720px !important;
  margin-bottom: 20px !important;
}
.premium-hero-lead {
  font-family: var(--font-body) !important;
  font-size: 16.5px !important;
  line-height: 1.76 !important;
  max-width: 680px !important;
  color: #dcecf1 !important;
}
.premium-hero-search {
  max-width: 650px !important;
  margin-top: 29px !important;
}
.premium-trust-row span {
  font-family: var(--font-display) !important;
  font-weight: 750 !important;
  letter-spacing: -0.01em !important;
}
.premium-procurement-board {
  border-radius: 36px !important;
  padding: 21px !important;
}
.premium-board-search-preview,
.premium-board-metrics div,
.premium-request-card,
.premium-board-flow div {
  box-shadow: 0 16px 34px rgba(7, 21, 34, 0.065) !important;
}
.premium-board-search-preview strong {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  letter-spacing: -0.035em !important;
}
.premium-request-card strong {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
}
.premium-request-card small,
.premium-board-search-preview small,
.premium-board-metrics span,
.premium-board-flow span {
  font-family: var(--font-body) !important;
}
@media (max-width: 1180px) {
  .premium-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr) !important;
    gap: 34px !important;
  }
  .premium-hero-copy h1 {
    font-size: clamp(40px, 4vw, 54px) !important;
    max-width: 620px !important;
  }
  .premium-hero-lead {
    font-size: 15.8px !important;
    max-width: 600px !important;
  }
}
@media (max-width: 980px) {
  .premium-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .premium-hero-copy h1 {
    max-width: 760px !important;
  }
}
@media (max-width: 680px) {
  .premium-home-hero-v42 {
    padding: 46px 0 50px !important;
  }
  .premium-hero-copy h1 {
    font-size: 34px !important;
    line-height: 1.07 !important;
    letter-spacing: -0.045em !important;
  }
  .premium-hero-lead {
    font-size: 14.8px !important;
    line-height: 1.68 !important;
  }
  .premium-hero-search {
    margin-top: 22px !important;
  }
  .premium-trust-row {
    margin-top: 20px !important;
  }
}

/* ============================================================
   CATEGORY CARD REAL PRODUCT IMAGES (v57)
============================================================ */

/* ============================================================
   TRUST BADGE (v66)
============================================================ */
/* v66: clean product trust badge placeholder text */
.trust-score-card {
  gap: 9px !important;
  padding-right: 15px !important;
}
.trust-score-card strong {
  font-weight: 900 !important;
}

/* Auto formatted imported product descriptions */
.product-description-sections {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
  max-width: 780px;
}
.product-desc-block {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9e8ee;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(7, 21, 34, 0.045);
}
.product-desc-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #061522;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.product-desc-block h3:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b3a4, #0e7490);
  box-shadow: 0 0 0 6px rgba(0, 179, 164, 0.1);
  flex: 0 0 auto;
}
.product-desc-block p {
  margin: 0 0 10px;
  color: #405268;
  font-size: 15.5px;
  line-height: 1.78;
}
.product-desc-block p:last-child {
  margin-bottom: 0;
}
.desc-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desc-list li {
  position: relative;
  padding-left: 25px;
  color: #405268;
  line-height: 1.72;
}
.desc-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a695;
  font-weight: 900;
}
.desc-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}
.desc-spec-list div {
  background: #f8fbfd;
  border: 1px solid #e2edf1;
  border-radius: 14px;
  padding: 11px 12px;
}
.desc-spec-list dt {
  color: #64748b;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.desc-spec-list dd {
  margin: 0;
  color: #0f1f33;
  font-weight: 750;
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .product-description-sections {
    gap: 12px;
    margin: 16px 0 20px;
  }
  .product-desc-block {
    border-radius: 18px;
    padding: 15px 15px;
  }
  .product-desc-block p {
    font-size: 14.5px;
    line-height: 1.72;
  }
  .desc-spec-list {
    grid-template-columns: 1fr;
  }
}

.product-short-intro {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #405268 !important;
  max-width: 760px;
  margin: 10px 0 18px !important;
}

/* ============================================================
   MOBILE NAVIGATION + CATEGORY DIRECTORY (v52)
============================================================ */
/* v52: professional mobile navigation + deep category organization */
.mobile-category-panel {
  display: none;
}
.category-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.category-stats-row span,
.category-page-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #e9fbff;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: 12px;
}
.category-stats-row strong,
.category-page-count strong {
  font-size: 15px;
  color: #fff;
}
.category-directory-section {
  background: linear-gradient(180deg, #f8fbfd, #fff);
}
.category-group-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
}
.category-group-block:last-child {
  border-bottom: 0;
}
.category-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}
.category-group-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  margin: 4px 0 0;
}
.category-group-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  box-shadow: 0 8px 24px rgba(7, 21, 34, 0.05);
}
.category-pro-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.category-pro-card {
  padding: 14px;
  gap: 9px;
  border-radius: 24px;
  min-height: 100%;
}
.category-pro-card:hover {
  transform: translateY(-3px);
}
.category-card-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fcfd, #eef9fb) !important;
  border: 1px solid #dcecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.category-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  background: white !important;
}
.category-card-media span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(7, 21, 34, 0.88);
  color: #fff;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 21, 34, 0.18);
}
.category-pro-card h3 {
  font-size: 16px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  margin: 3px 0 0;
}
.category-pro-card p {
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-pro-card .link-arrow {
  font-size: 12px;
}
.family-head p {
  margin: 5px 0 0;
  color: #64748b;
  font-weight: 700;
  font-size: 13px;
}
.simple-category-strip .category-strip-card {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: max-content !important;
  min-height: 42px !important;
}
.simple-category-strip .category-strip-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eefbfc;
  color: #05707c;
  font-size: 10px;
  font-weight: 900;
  padding: 0 7px;
}
.simple-category-strip .category-strip-card.active small {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 1120px) {
  .category-pro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  body.nav-open {
    overflow: hidden;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 95;
    background: #fff;
    box-shadow: 0 10px 28px rgba(7, 21, 34, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-inner {
    position: relative;
    justify-content: space-between;
  }
  /* Right side: cart icon + hamburger */
  .nav-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
  }
  .nav-toggle {
    order: 4;
    margin-left: 0 !important;
    display: flex;
  }
  .nav-toggle {
    width: 44px !important;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce9ee;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(7, 21, 34, 0.06);
    padding: 0;
    position: relative;
    z-index: 120;
    cursor: pointer;
    touch-action: manipulation;
  }
  .nav-toggle span {
    width: 20px;
    transition: 0.2s ease;
    background: #071522;
  }
  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);
  }
  .nav-menu {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: 82px !important;
    bottom: auto !important;
    height: calc(100dvh - 96px) !important;
    max-height: calc(100vh - 96px) !important;
    background: linear-gradient(180deg, #ffffff, #f7fbfc) !important;
    border: 1px solid #dce9ee !important;
    border-radius: 28px !important;
    padding: 14px !important;
    box-shadow: 0 28px 80px rgba(7, 21, 34, 0.22) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    overflow-y: auto !important;
    z-index: 100 !important;
    overscroll-behavior: contain;
  }
  .nav-menu.open,
  body.nav-open .nav-menu,
  .nav-toggle[aria-expanded="true"] + .nav-menu {
    display: flex !important;
  }
  .nav-menu > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 45px;
    border: 1px solid #e2edf1;
    background: #fff;
    color: #0f1f33 !important;
    border-radius: 16px;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow: 0 6px 16px rgba(7, 21, 34, 0.035);
  }
  .nav-menu > a:after {
    content: "›";
    font-size: 18px;
    color: #0aa7b5;
    font-weight: 900;
  }
  .nav-menu > a.active {
    background: linear-gradient(135deg, #071522, #0b2c3f);
    color: #fff !important;
    border-color: #071522;
  }
  .nav-menu > a.active:after {
    color: #39d5df;
  }
  .mobile-category-panel {
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dce9ee;
  }
  .mobile-category-title {
    position: sticky;
    top: -14px;
    z-index: 2;
    background: linear-gradient(180deg, #f8fbfd 70%, rgba(248, 251, 253, 0.85));
    padding: 10px 2px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .mobile-category-title strong {
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #071522;
  }
  .mobile-category-title span {
    font-size: 11px;
    font-weight: 900;
    color: #05707c;
    background: #e8fbfd;
    border: 1px solid #cceef1;
    border-radius: 999px;
    padding: 7px 9px;
    white-space: nowrap;
  }
  .mobile-category-group {
    margin: 10px 0 14px;
  }
  .mobile-category-group p {
    margin: 0 0 8px;
    color: #667085;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
  }
  .mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .mobile-category-grid a {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 9px;
    min-height: 54px;
    background: #fff;
    border: 1px solid #e2edf1;
    border-radius: 16px;
    padding: 8px 9px;
    color: #0f1f33;
    box-shadow: 0 6px 16px rgba(7, 21, 34, 0.035);
  }
  .mobile-category-grid img {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    object-fit: cover;
    background: #eefbfc;
    border: 1px solid #d5eef2;
  }
  .mobile-category-grid span {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .mobile-category-grid small {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #f0fbfc;
    color: #05707c;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
  }
  .category-pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-group-head {
    align-items: flex-start;
    display: block;
  }
  .category-group-head p {
    display: inline-flex;
    margin-top: 10px;
  }
}

@media (max-width: 680px) {
  .category-stats-row {
    gap: 7px;
    margin-top: 18px;
  }
  .category-stats-row span {
    font-size: 11px;
    padding: 8px 10px;
  }
  .category-pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .category-pro-card {
    border-radius: 20px;
    padding: 10px;
  }
  .category-card-media {
    border-radius: 16px;
  }
  .category-pro-card h3 {
    font-size: 13px;
    line-height: 1.22;
  }
  .category-pro-card p {
    font-size: 11px;
    -webkit-line-clamp: 2;
  }
  .category-pro-card .link-arrow {
    font-size: 11px;
  }
  .mobile-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .simple-category-strip .category-strip-row {
    gap: 8px !important;
    padding-bottom: 8px !important;
  }
  .simple-category-strip .category-strip-card {
    border-radius: 14px !important;
    padding: 10px 11px !important;
    font-size: 11px !important;
    max-width: 190px !important;
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.15 !important;
  }
  .simple-category-strip .category-strip-card span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .simple-category-strip .category-strip-card small {
    height: 21px;
    min-width: 21px;
    font-size: 9px;
    padding: 0 6px;
  }
}

/* ============================================================
   CATEGORY IMAGE CAROUSEL (v72)
============================================================ */
/* v72: compact image category carousel + working category group action */
.category-group-head .category-group-action {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  box-shadow: 0 8px 24px rgba(7, 21, 34, 0.05);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: 0.2s ease;
}
.category-group-head .category-group-action:hover {
  color: #05707c;
  border-color: #9fd7dd;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(7, 21, 34, 0.08);
}
.emh-image-category-strip {
  margin: 8px 0 28px !important;
  overflow: hidden !important;
  padding: 2px 0 !important;
}
.emh-image-category-strip .category-strip-row {
  gap: 12px !important;
  align-items: stretch !important;
  padding: 4px 2px 12px !important;
  scroll-snap-type: x proximity !important;
  scroll-behavior: smooth !important;
}
.emh-image-category-strip .category-strip-card {
  flex: 0 0 150px !important;
  min-width: 150px !important;
  min-height: 126px !important;
  width: 150px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 9px !important;
  padding: 11px !important;
  border-radius: 20px !important;
  white-space: normal !important;
  text-align: left !important;
  background: #fff !important;
  border: 1px solid #d6e8ee !important;
  box-shadow: 0 10px 26px rgba(6, 21, 34, 0.055) !important;
  color: #071522 !important;
}
.emh-image-category-strip .category-strip-card:hover {
  transform: translateY(-2px) !important;
  border-color: #9fd7dd !important;
  box-shadow: 0 18px 38px rgba(6, 21, 34, 0.095) !important;
}
.emh-image-category-strip .category-strip-card.active {
  background: linear-gradient(145deg, #061522, #0a3440) !important;
  border-color: #061522 !important;
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(6, 21, 34, 0.16) !important;
}
.emh-image-category-strip .category-strip-thumb {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 16px !important;
  background: #f1fbfc !important;
  border: 1px solid #d6edf1 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 3px !important;
  line-height: 1 !important;
}
.emh-image-category-strip .category-strip-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 3px !important;
  display: block !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 12px !important;
}
.emh-image-category-strip .category-strip-thumb-all img {
  padding: 8px !important;
}
.emh-image-category-strip .category-strip-copy {
  display: block !important;
  width: 100% !important;
  font-size: inherit !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}
.emh-image-category-strip .category-strip-copy strong {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  font-size: 12.5px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
}
.emh-image-category-strip .category-strip-copy small {
  display: block !important;
  background: transparent !important;
  color: #05707c !important;
  min-width: 0 !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 4px 0 0 !important;
  font-size: 10px !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
}
.emh-image-category-strip .category-strip-card.active .category-strip-thumb {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.emh-image-category-strip
  .category-strip-card.active
  .category-strip-copy
  small {
  color: #66f3eb !important;
}
@media (max-width: 760px) {
  .category-group-head .category-group-action {
    margin-top: 10px;
    font-size: 12px;
    padding: 9px 12px;
    white-space: normal;
    text-align: center;
  }
  .emh-image-category-strip {
    margin: 4px 0 20px !important;
  }
  .emh-image-category-strip .category-strip-row {
    gap: 8px !important;
    padding: 3px 1px 10px !important;
  }
  .emh-image-category-strip .category-strip-card {
    flex-basis: 104px !important;
    min-width: 104px !important;
    width: 104px !important;
    min-height: 104px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    gap: 7px !important;
  }
  .emh-image-category-strip .category-strip-thumb {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 13px !important;
  }
  .emh-image-category-strip .category-strip-copy strong {
    font-size: 10.7px !important;
    line-height: 1.14 !important;
    -webkit-line-clamp: 2 !important;
  }
  .emh-image-category-strip .category-strip-copy small {
    font-size: 9px !important;
    padding-top: 3px !important;
  }
}
@media (max-width: 380px) {
  .emh-image-category-strip .category-strip-card {
    flex-basis: 96px !important;
    min-width: 96px !important;
    width: 96px !important;
  }
  .emh-image-category-strip .category-strip-thumb {
    width: 41px !important;
    height: 41px !important;
    min-width: 41px !important;
  }
}

/* Smooth infinite product-page category marquee */
.emh-image-category-strip .category-strip-row[data-auto-scroll="true"] {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  overscroll-behavior-x: contain !important;
  will-change: scroll-position;
}
.emh-image-category-strip
  .category-strip-row[data-auto-scroll="true"]
  .category-strip-card {
  scroll-snap-align: none !important;
}
.emh-image-category-strip
  .category-strip-row[data-auto-scroll="true"]
  .is-slider-clone {
  pointer-events: auto;
}

.emh-image-category-strip {
  margin: 6px 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.emh-image-category-strip .category-strip-row {
  gap: 10px !important;
  padding: 4px 0 8px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.emh-image-category-strip .category-strip-row::-webkit-scrollbar {
  display: none !important;
}
.emh-image-category-strip .category-strip-card {
  flex: 0 0 86px !important;
  min-width: 86px !important;
  width: 86px !important;
  height: 86px !important;
  min-height: 86px !important;
  padding: 0 !important;
  border-radius: 22px !important;
  display: grid !important;
  place-items: center !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  background: #fff !important;
  border: 1px solid #d6e8ee !important;
  box-shadow: 0 10px 24px rgba(6, 21, 34, 0.055) !important;
  overflow: hidden !important;
}
.emh-image-category-strip .category-strip-card:hover {
  transform: translateY(-2px) !important;
  border-color: #90d7dd !important;
  box-shadow: 0 15px 34px rgba(6, 21, 34, 0.1) !important;
}
.emh-image-category-strip .category-strip-card.active {
  background: #061522 !important;
  border-color: #061522 !important;
  box-shadow: 0 14px 36px rgba(6, 21, 34, 0.16) !important;
}
.emh-image-category-strip .category-strip-copy {
  display: none !important;
}
.emh-image-category-strip .category-strip-thumb {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  overflow: hidden !important;
}
.emh-image-category-strip .category-strip-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.emh-image-category-strip .category-strip-card.active .category-strip-thumb {
  background: transparent !important;
  border-color: transparent !important;
}
@media (max-width: 760px) {
  .emh-image-category-strip {
    margin: 2px 0 18px !important;
  }
  .emh-image-category-strip .category-strip-row {
    gap: 7px !important;
    padding: 3px 0 7px !important;
  }
  .emh-image-category-strip .category-strip-card {
    flex-basis: 64px !important;
    min-width: 64px !important;
    width: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 !important;
    border-radius: 17px !important;
    overflow: hidden !important;
  }
  .emh-image-category-strip .category-strip-thumb {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }
}
@media (max-width: 380px) {
  .emh-image-category-strip .category-strip-card {
    flex-basis: 58px !important;
    min-width: 58px !important;
    width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
  }
  .emh-image-category-strip .category-strip-thumb {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }
}

/* EMH fix: hide unconfirmed price labels and clean mobile single-product order panel */
.quote-label.no-price {
  display: none !important;
}
.product-urgency-panel .live-activity {
  display: grid !important;
  grid-template-columns: 1fr !important;
  row-gap: 6px !important;
  column-gap: 0 !important;
  align-items: start !important;
}
.product-urgency-panel .live-activity small {
  grid-column: auto !important;
  margin-top: 0 !important;
  max-width: 100% !important;
}
@media (max-width: 760px) {
  .product-urgency-panel {
    padding: 14px !important;
    margin: 14px 0 16px !important;
    border-radius: 18px !important;
  }
  .product-urgency-panel .live-activity {
    text-align: left !important;
  }
  .product-urgency-panel .live-activity strong {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
  }
  .product-urgency-panel .live-activity small {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .product-urgency-panel .quote-steps {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .product-urgency-panel .quote-steps span {
    min-height: 40px !important;
    font-size: 13px !important;
    padding: 9px 10px !important;
  }
}

/* ============================================================
   CART ICON + MOBILE NAV LAYOUT FIX
============================================================ */
/* Desktop: show "Cart" label, hide icon */
.cart-icon {
  display: none;
}
.cart-label {
  display: inline;
}

/* Mobile: icon-only cart button, proper right-side layout */
@media (max-width: 940px) {
  /* nav order: logo (flex-start) → actions + toggle (flex-end) */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .brand {
    flex: 0 0 auto;
    margin-right: auto;
  }
  .nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0 !important;
  }
  .nav-toggle {
    flex: 0 0 auto;
    margin-left: 8px !important;
  }

  /* Cart: icon only, compact pill */
  .quote-link {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 16px !important;
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .cart-label {
    display: none !important;
  }
  .cart-icon {
    display: block !important;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .cart-count {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    margin: 0 !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    background: linear-gradient(135deg, #28e4cd, #0aa0a9) !important;
    color: #042126 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 3px 8px rgba(6, 21, 34, 0.18) !important;
  }
}
