/* Skya Hardware Hub — ported from github.com/iabishnoi/skya-hardware-hub */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --site-bg: #F2EDE7;
  --section-bg: #F8F5F0;
  --background: #FFFDFC;
  --foreground: #1a2744;
  --card: #FFFDFC;
  --muted: #64748b;
  --border: rgba(80, 65, 50, 0.10);
  --accent: #5eb8e8;
  --accent-hover: #3da8de;
  --primary: #1a2744;
  --primary-fg: #fdfcfa;
  --secondary: #F8F5F0;
  --radius: 1rem;
  --shadow-card: 0 6px 18px -6px rgba(55, 42, 30, 0.08);
  --shadow-hover: 0 18px 40px -12px rgba(55, 42, 30, 0.14);
  --shadow-accent: 0 14px 32px -10px rgba(94, 184, 232, 0.45);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  --container: min(1280px, 92%);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  background: var(--site-bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: transparent;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}

a { color: var(--accent-hover); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; height: auto; }

.container, .container-x {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 639px) {
  .container, .container-x {
    width: 100%;
    padding-left: clamp(0.75rem, 3.5vw, 1rem);
    padding-right: clamp(0.75rem, 3.5vw, 1rem);
  }
}

@media (min-width: 640px) {
  .container, .container-x { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.industrial-pattern {
  background-image:
    linear-gradient(to right, rgba(221, 226, 230, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(221, 226, 230, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}
.section-pattern.opacity-low { opacity: 0.1; }

/* Buttons — repo .btn-accent / .btn-outline */
.btn-accent, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: 0.2s;
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover, .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--primary);
}

.btn-outline, .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  text-decoration: none !important;
  transition: 0.2s;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); }
.btn-outline-light { border-color: var(--border); }
.btn-outline-light:hover { border-color: var(--accent); background: var(--secondary); color: var(--primary); }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 0.35rem;
}
.section-title { font-size: clamp(1.45rem, 3vw, 2.25rem); margin: 0.25rem 0; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 0.95rem; }
.section-head-center { text-align: center; margin-bottom: 2.5rem; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.link-arrow { font-weight: 600; color: var(--accent-hover); font-size: 0.9rem; }
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }
.text-center-mobile { text-align: center; margin-top: 1.5rem; }
@media (min-width: 640px) { .text-center-mobile { display: none; } }

/* Header — transparent over white background */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled {
  background: rgba(248, 245, 240, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px -4px rgba(55, 42, 30, 0.08);
}
.site-header.is-scrolled .main-nav {
  background: rgba(248, 245, 240, 0.55);
}

.top-bar {
  font-size: 0.7rem;
  color: var(--muted);
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(226, 232, 240, 0.45);
}
@media (min-width: 640px) { .top-bar { font-size: 0.75rem; } }

.top-ticker {
  overflow: hidden;
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.top-ticker-track {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  padding: 0.35rem clamp(0.75rem, 3.5vw, 1rem);
}
.top-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.65rem;
  padding-right: 0;
  white-space: nowrap;
}
.top-ticker-group[aria-hidden="true"] { display: none; }
@media (min-width: 768px) {
  .top-ticker-group { gap: 1rem; }
}
.top-ticker-group a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.top-ticker-group a:hover { color: var(--accent-hover); }
.ticker-sep {
  color: rgba(100, 116, 139, 0.4);
  user-select: none;
  flex-shrink: 0;
}

@keyframes top-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-ticker:hover .top-ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .top-ticker-track,
  .trust-bar-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0.4rem clamp(0.75rem, 3.5vw, 1rem);
    gap: 0.35rem 0.65rem;
  }
  .top-ticker,
  .trust-bar-scroll {
    -webkit-mask-image: none;
    mask-image: none;
    min-height: auto;
  }
  .top-ticker-group[aria-hidden="true"],
  .trust-bar-set[aria-hidden="true"] {
    display: none;
  }
  .top-ticker-group,
  .trust-bar-set {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    padding-right: 0;
  }
}

.main-nav {
  position: relative;
  border-bottom: 1px solid rgba(226, 232, 240, 0.45);
  background: transparent;
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 56px;
  min-width: 0;
  width: 100%;
}
@media (min-width: 640px) { .nav-inner { gap: 0.75rem; } }
@media (min-width: 1024px) { .nav-inner { min-height: 64px; } }
.nav-inner > .logo {
  flex: 0 1 auto;
  min-width: 0;
  margin-right: auto;
}
.logo img {
  height: 40px;
  width: auto;
  max-width: min(150px, 44vw);
  object-fit: contain;
}
@media (min-width: 1024px) {
  .logo img { height: 48px; max-width: none; }
  .nav-inner > .logo { margin-right: 0; }
}
@media (max-width: 1023px) {
  .hide-mobile-nav { display: none !important; }
}

.nav-menu { display: none; list-style: none; margin: 0; padding: 0; gap: 0.1rem; }
@media (min-width: 1024px) { .nav-menu { display: flex; align-items: center; } }
.nav-menu a {
  padding: 0.5rem 0.75rem;
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-hover); }

.has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-chevron {
  display: none;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .nav-menu.open .nav-chevron {
    display: inline-block;
  }
}

.has-dropdown.is-open .nav-chevron {
  transform: rotate(-135deg);
  margin-top: 0.1rem;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 960px);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 1.5rem;
  margin-top: 0.25rem;
  z-index: 60;
}

@media (min-width: 1024px) {
  .nav-chevron {
    display: inline-block;
  }

  .has-dropdown > .nav-dropdown-trigger {
    cursor: pointer;
  }

  .has-dropdown.is-open > .nav-dropdown-trigger {
    color: var(--accent-hover);
    background: rgba(94, 184, 232, 0.12);
  }

  .has-dropdown .mega-menu {
    display: block;
    left: 0;
    transform: translateY(6px);
    width: min(92vw, 880px);
    margin-top: 0.35rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    max-height: min(78vh, 520px);
    transition:
      opacity 0.24s ease,
      transform 0.24s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0.24s ease;
  }

  .has-dropdown.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mega-menu-inner {
    padding: 1.15rem 1.35rem 1.25rem;
    overflow-y: auto;
    max-height: min(78vh, 520px);
    -webkit-overflow-scrolling: touch;
  }

  .mega-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.85rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: rgba(94, 184, 232, 0.1);
  }

  .mega-all-link:hover {
    background: rgba(94, 184, 232, 0.18);
  }

  .mega-grid a {
    padding: 0.55rem 0.65rem;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mega-footer {
    margin-top: 0.85rem;
    padding: 0.85rem 0 0;
  }
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.25rem 1.5rem; list-style: none; padding: 0; margin: 0; }
.mega-grid a {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--primary);
}
.mega-grid a:hover { background: var(--secondary); color: var(--accent-hover); }
.mega-grid .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 0.45rem; flex-shrink: 0; }
.mega-all-link {
  display: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent-hover);
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.mega-all-link:hover { color: var(--primary); }
.mega-cat-desc {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75rem;
  margin-top: 0.1rem;
  line-height: 1.35;
}

.mega-footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 640px) { .nav-end { gap: 0.35rem; } }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
@media (min-width: 640px) { .nav-actions { gap: 0.35rem; } }
.search-btn {
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 1.05rem;
  text-decoration: none !important;
  line-height: 1;
}
@media (min-width: 640px) {
  .search-btn { padding: 0.4rem 0.55rem; font-size: 1.1rem; }
}
.search-btn:hover { background: var(--secondary); }
.nav-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.nav-toggle:hover {
  background: #2a3f5f;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.nav-toggle:active {
  transform: translateY(0);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
@media (max-width: 1023px) {
  .nav-end { order: 2; }
  .nav-inner > .logo { order: 0; }
  .nav-menu { order: 1; }
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s, width 0.25s;
  transform-origin: center;
}
.nav-toggle span:nth-child(2) {
  width: 13px;
  align-self: flex-start;
  margin-left: 4px;
}
.nav-toggle span:nth-child(3) {
  width: 16px;
  align-self: flex-start;
  margin-left: 4px;
}
.nav-toggle:hover span:nth-child(2) {
  width: 18px;
}
.nav-toggle:hover span:nth-child(3) {
  width: 18px;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 18px;
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 18px;
}

.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 100%;
  width: 50%;
  min-width: 260px;
  background: rgba(253, 252, 249, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-top: none;
  border-right: none;
  box-shadow: -8px 16px 40px -12px rgba(55, 42, 30, 0.12);
  padding: 0.75rem clamp(0.75rem, 3.5vw, 1rem) 1rem;
  max-height: calc(100dvh - 7rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 90;
  animation: nav-menu-slide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes nav-menu-slide {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (min-width: 1024px) {
  .nav-menu.open { position: static; flex-direction: row; background: none; border: none; box-shadow: none; padding: 0; max-height: none; overflow: visible; }
}

/* Hero */
/* Home page soft premium background */
.page-home {
  background: var(--site-bg);
}

.hero-carousel-wrap { padding-top: 1rem; }
@media (min-width: 640px) { .hero-carousel-wrap { padding-top: 1.5rem; } }
.hero-carousel {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--primary);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .hero-carousel { border-radius: 1rem; } }
.carousel-track {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 560px;
  overflow: hidden;
}
@media (min-width: 640px) { .carousel-track { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .carousel-track { aspect-ratio: 21 / 9; } }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  overflow: hidden;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(4px);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--primary);
}
@media (min-width: 640px) { .carousel-btn { width: 44px; height: 44px; font-size: 1.4rem; } }
.carousel-btn.prev { left: 0.5rem; }
.carousel-btn.next { right: 0.5rem; }
.carousel-dots {
  display: none;
}
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 5;
}
.dot {
  height: 6px;
  width: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(253, 252, 250, 0.7);
  padding: 0;
  cursor: pointer;
}
.dot.active { width: 28px; background: var(--accent); }

.hero-intro { text-align: center; padding: 1.5rem 0 0; max-width: 48rem; margin: 0 auto; }
@media (min-width: 1024px) { .hero-intro { padding: 2.5rem 0 0; } }
.hero-intro h1 { font-size: clamp(1.5rem, 4.5vw, 3rem); line-height: 1.15; margin: 0.5rem 0; }
.hero-lead { color: var(--muted); font-size: clamp(0.9rem, 2vw, 1.1rem); margin: 0 0 1.25rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 0; }

.trust-bar {
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  border-bottom: 1px solid rgba(26, 39, 68, 0.1);
}
.trust-bar-scroll {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.trust-bar-track {
  display: flex;
  width: 100%;
  justify-content: center;
}
.trust-bar-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2rem;
}
.trust-bar-set[aria-hidden="true"] { display: none; }
@media (min-width: 1024px) {
  .trust-bar-scroll {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .trust-bar-track {
    gap: 2rem;
  }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 640px) { .trust-item { font-size: 0.875rem; } }
.trust-item::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* Category bento */
.section-about-intro {
  padding: 1.5rem 0 0.5rem;
  position: relative;
  text-align: center;
}

.section-categories, .section-featured, .section-about, .section-partner, .section-contact-trio {
  padding: 4rem 0;
  position: relative;
}
.section-inner { position: relative; z-index: 1; }
.section-featured { background: var(--section-bg); }

.category-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 180px;
}
@media (min-width: 768px) {
  .category-bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (min-width: 1024px) {
  .category-bento { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: #fff;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.cat-card.bento-large { grid-column: span 2; grid-row: span 2; }
.cat-card.bento-wide { grid-column: span 2; }

/* Tablet/mobile: uniform 2-column grid like featured products */
@media (max-width: 1023px) {
  .category-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    grid-auto-rows: auto;
  }
  .cat-card.bento-large,
  .cat-card.bento-wide,
  .cat-card {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
    min-height: 0;
  }
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-accent); border-color: rgba(94, 184, 232, 0.5); }
.cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.95) 0%, rgba(26, 39, 68, 0.55) 50%, rgba(26, 39, 68, 0.1) 100%);
  transition: opacity 0.5s;
}
.cat-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem 1.15rem;
}
@media (min-width: 768px) {
  .cat-content { padding: 1.25rem 1.35rem; }
  .cat-card:not(.bento-large) .cat-content { opacity: 0.95; }
}
.cat-content h3 { margin: 0 0 0.2rem; font-size: 1rem; color: #fff; }
@media (min-width: 768px) { .cat-content h3 { font-size: 1.1rem; } }
.cat-content p { margin: 0; font-size: 0.75rem; opacity: 0.85; line-height: 1.4; color: #fff; }
.cat-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: 0.3s;
}
@media (min-width: 768px) {
  .cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }
}
.shine::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s;
  pointer-events: none;
  z-index: 4;
}
.shine:hover::after { left: 125%; }

/* Products */
.card-product {
  display: block;
  background: var(--card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-product-img { aspect-ratio: 1; overflow: hidden; background: var(--secondary); }
.card-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card-product:hover .card-product-img img { transform: scale(1.05); }
.card-product-body { padding: 1rem; }
.product-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--accent-hover); }
.card-product h3 { font-size: 0.9rem; margin: 0.2rem 0; line-height: 1.3; }
.sku { font-size: 0.75rem; color: var(--muted); margin: 0.15rem 0 0.5rem; }
.card-product .desc { font-size: 0.8rem; color: var(--muted); margin: 0 0 0.5rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-link { font-size: 0.75rem; font-weight: 600; color: var(--accent-hover); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* Products shop — Flipkart-style category strip */
.page-hero-compact { padding-bottom: 0.5rem; }
.products-hero-sub { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.95rem; }
.products-shop-section { padding-top: 0.75rem; }
.category-strip-wrap {
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.category-strip-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.category-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.category-strip::-webkit-scrollbar { height: 4px; }
.category-strip::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.category-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--primary);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.category-chip:hover {
  border-color: var(--accent);
  background: var(--card);
}
.category-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}
.category-chip.is-active:hover {
  background: var(--accent-hover);
}
.category-chip-count {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.75;
  padding: 0.1rem 0.4rem;
  background: rgba(26, 39, 68, 0.08);
  border-radius: 999px;
}
.category-chip.is-active .category-chip-count {
  background: rgba(255, 255, 255, 0.35);
}
.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}
.products-active-title {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display, inherit);
}
.products-result-count { margin: 0; font-size: 0.85rem; }
.products-empty {
  text-align: center;
  padding: 2.5rem 1rem;
}



/* About */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-hover); width: 100%; }
.about-text { color: var(--muted); line-height: 1.7; margin: 1rem 0 1.5rem; }
.features-grid { display: grid; gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-box { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(94, 184, 232, 0.12);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-box strong { display: block; font-size: 0.9rem; color: var(--primary); }
.feature-box p { margin: 0.15rem 0 0; font-size: 0.8rem; color: var(--muted); }

.section-partner { text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.contact-trio { display: grid; gap: 1rem; }
@media (min-width: 768px) { .contact-trio { grid-template-columns: repeat(3, 1fr); } }
.trio-card {
  display: block;
  padding: 1.5rem;
  text-align: center;
  background: var(--card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s;
}
.trio-card:hover { border-color: var(--accent); }
.trio-main { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 0.35rem 0; }
.trio-sub { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* Footer — repo Footer.tsx */
.site-footer {
  margin-top: 4rem;
  background: var(--section-bg);
  color: var(--primary);
  border-top: 1px solid var(--border);
}
.footer-cta-strip { border-bottom: 1px solid rgba(26, 39, 68, 0.1); padding: 1.5rem 0; }
.footer-cta-row { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 768px) {
  .footer-cta-row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-cta-row h2 { font-size: 1.1rem; margin: 0; }
.footer-cta-row p { margin: 0.25rem 0 0; font-size: 0.85rem; color: var(--muted); }
.footer-cta-actions { display: flex; gap: 0.5rem; width: 100%; }
@media (min-width: 768px) { .footer-cta-actions { width: auto; } }
.footer-cta-actions .btn-outline { flex: 1; }
@media (min-width: 768px) { .footer-cta-actions .btn-outline { flex: none; } }

.footer-brand-block { padding: 2rem 0; }
.footer-brand-row { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .footer-brand-row { flex-direction: row; justify-content: space-between; } }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  background: var(--primary-fg);
  border-radius: 8px;
}
.footer-logo-wrap img { height: 36px; }
.footer-about { max-width: 28rem; font-size: 0.9rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  align-items: start;
}
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
.site-footer h4 { font-size: 0.9rem; margin: 0 0 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--muted); font-size: 0.875rem; text-decoration: none; }
.site-footer a:hover { color: var(--accent-hover); }

/* Address & contact lines — one font everywhere (footer, contact page, etc.) */
.site-address-text {
  font-family: var(--font-sans) !important;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: normal;
  color: var(--muted);
}
.site-footer .contact-list li,
.site-footer .contact-list .site-address-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}
.contact-card-static .site-address-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--foreground);
  font-size: 0.9rem;
}
.newsletter-row { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.newsletter-row input {
  flex: 1;
  min-width: 140px;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
}
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-legal a { margin-left: 0.75rem; color: var(--muted); }
@media (max-width: 600px) {
  .footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .footer-legal a { margin-left: 0; }
}

/* Pages */
.page-hero { padding: 2.5rem 0 1rem; }
.page-hero h1 { margin: 0; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.form-card {
  background: var(--card);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.form-card label { display: block; margin-bottom: 1rem; font-weight: 500; font-size: 0.9rem; }
.form-card input, .form-card textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-card {
  display: block;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  text-decoration: none !important;
  color: inherit;
}

.card-grid, .blog-grid, .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-card, .blog-card, .video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.info-card img, .blog-card img, .video-card img { height: 180px; width: 100%; object-fit: cover; }

/* —— Blog —— */
.blog-page-hero .blog-hero-lead,
.blog-list-sub {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36rem;
}
.blog-list-section { padding-top: 0.5rem; }
.blog-list-header {
  margin-bottom: 1.5rem;
}
.blog-list-header .section-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
.blog-empty {
  text-align: center;
  padding: 2.5rem 1rem;
}
.blog-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--secondary);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.blog-card-date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-hover);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--primary);
}
.blog-card-excerpt {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-cta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-hover);
  margin-top: 0.35rem;
}
.blog-back-link {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
}
.blog-back-link:hover { color: var(--primary); }
.blog-article-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0.25rem 0 0.5rem;
  max-width: 48rem;
}
.blog-article-date {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.blog-article-layout {
  max-width: 52rem;
  margin: 0 auto;
}
.blog-article-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.blog-article-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.blog-prose {
  font-family: var(--font-sans);
}
.blog-prose h2,
.blog-prose h3 {
  font-family: var(--font-display);
  margin-top: 1.5rem;
}
.blog-prose p,
.blog-prose li {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}
.download-list { list-style: none; padding: 0; }
.download-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
/* Videos — embedded YouTube (16:9) */
.section-videos { padding-top: 0.5rem; }
.video-card {
  display: flex;
  flex-direction: column;
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0f172a;
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
}
.video-embed-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  inset: 0;
}
.video-fallback-link {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}
.video-card-body {
  padding: 1rem 1.1rem 1.15rem;
}
.video-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.video-card-body p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.video-yt-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
}
.video-yt-link:hover { text-decoration: underline; }
.video-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
}

/* Site modals (Get Quote, etc.) */
.site-modal[hidden] { display: none !important; }
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  overscroll-behavior: contain;
}
.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92dvh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -12px rgba(26, 39, 68, 0.35);
  animation: site-modal-in 0.28s ease;
  overflow: hidden;
}
@keyframes site-modal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.site-modal-handle {
  display: none;
}
.site-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--card);
}
.site-modal-header-text {
  min-width: 0;
  flex: 1;
}
.site-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-family: var(--font-display, inherit);
}
.site-modal-sub {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.site-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--primary);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.site-modal-close-icon {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}
.site-modal-close-label {
  display: none;
}
.site-modal-close:hover,
.site-modal-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent-hover);
  outline: none;
  background: rgba(94, 184, 232, 0.08);
}
.site-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.site-modal-body .form-card {
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}
.site-modal-footer {
  display: none;
  flex-shrink: 0;
  padding: 0.75rem 1.25rem max(1rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--card);
}
.site-modal-footer-close {
  min-height: 44px;
}
.quote-form-compact label { margin-bottom: 0.85rem; }
.quote-page-wrap { max-width: 640px; }
.btn-block { width: 100%; }

.nav-quote-desktop {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-quote-mobile { display: none; }
.nav-quote-btn {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 8px;
  background: rgba(94, 184, 232, 0.2);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}
.nav-quote-btn:hover { background: rgba(94, 184, 232, 0.35); }
.breadcrumb { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.prose { max-width: 48rem; line-height: 1.7; }
.prose img,
.prose video,
.prose iframe,
.prose embed {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.prose table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose pre {
  overflow-x: auto;
  max-width: 100%;
  font-size: 0.85em;
}

/* Utilities */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 0.35rem;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.info-card-body {
  padding: 1rem 1.15rem 1.15rem;
}
.info-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.info-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}
.trust-badges li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.trust-badges-form {
  margin-top: 2rem;
}

.dealer-hero {
  padding-bottom: 0.5rem;
}
.dealer-hero .container {
  max-width: 40rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.page-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
}
.page-empty .btn {
  margin-top: 1rem;
}

.carousel-dots .dot {
  min-width: 28px;
  min-height: 28px;
  padding: 11px 14px;
  box-sizing: content-box;
  background-clip: content-box;
}
.carousel-dots .dot.active {
  min-width: 44px;
}

.flash { padding: 1rem; text-align: center; font-weight: 500; z-index: 200; position: relative; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.search-form { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-intro { animation: fade-up 0.6s ease-out both; }

/* —— Homepage Popup —— */
.home-popup[hidden] { display: none !important; }
.home-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overscroll-behavior: contain;
}
.home-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.home-popup-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.35);
  overflow: hidden;
  animation: home-popup-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes home-popup-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.home-popup-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #1a2744;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.home-popup-x:hover {
  background: var(--card);
  transform: scale(1.08);
}
.home-popup-layout {
  display: flex;
  min-height: 380px;
}
.home-popup-brand {
  flex: 0 0 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-popup-brand-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}
.home-popup-brand-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(94,184,232,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(94,184,232,0.08) 0%, transparent 50%);
}
.home-popup-brand-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.home-popup-brand-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}
.home-popup-brand-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.home-popup-brand-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.03em;
}
.home-popup-brand-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.75rem auto 0.5rem;
}
.home-popup-brand-since {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin: 0.5rem 0 0;
  font-style: italic;
}
.home-popup-brand-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1.25rem;
}
.home-popup-brand-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.home-popup-content {
  flex: 1;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-popup-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.home-popup-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.home-popup-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.home-popup-form {
  margin: 0;
}
.home-popup-input-row {
  display: flex;
  gap: 0.5rem;
}
.home-popup-input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.home-popup-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,184,232,0.15);
}
.home-popup-btn {
  flex-shrink: 0;
  padding: 0.7rem 1.35rem;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.home-popup-btn:hover {
  background: #2a3f5f;
  transform: translateY(-1px);
}
.home-popup-btn:active {
  transform: translateY(0);
}
.home-popup-note {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0.65rem 0 0;
}

html.home-popup-open,
body.home-popup-open {
  overflow: hidden;
  touch-action: none;
}

/* —— Get Quote Modal —— */
.quote-modal {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 1300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overscroll-behavior: contain;
}
.quote-modal.is-open {
  display: flex !important;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quote-modal-drag { display: none; }
.quote-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 32px 64px -16px rgba(55, 42, 30, 0.25);
  overflow: hidden;
  animation: quote-modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes quote-modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quote-modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #1a2744;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.quote-modal-x:hover {
  background: var(--card);
  transform: scale(1.08);
}
.quote-modal-layout {
  display: flex;
  min-height: 420px;
}
.quote-modal-brand {
  flex: 0 0 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.quote-modal-brand-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}
.quote-modal-brand-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(94,184,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(94,184,232,0.06) 0%, transparent 50%);
}
.quote-modal-brand-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.quote-modal-brand-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.75rem;
}
.quote-modal-brand-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.quote-modal-brand-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}
.quote-modal-brand-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.75rem;
}
.quote-modal-brand-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.quote-modal-brand-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.quote-modal-brand-benefits span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.quote-modal-content {
  flex: 1;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-modal-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.quote-modal-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quote-modal-field input,
.quote-modal-field textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--background);
  color: var(--primary);
}
.quote-modal-field textarea {
  resize: vertical;
  min-height: 68px;
}
.quote-modal-field input:focus,
.quote-modal-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,184,232,0.12);
}
.quote-modal-field input::placeholder,
.quote-modal-field textarea::placeholder {
  color: #94a3b8;
}
.quote-modal-btn {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.2rem;
}
.quote-modal-btn:hover {
  background: #2a3f5f;
  transform: translateY(-1px);
}
.quote-modal-btn:active {
  transform: translateY(0);
}

html.quote-modal-open,
body.quote-modal-open {
  overflow: hidden;
  touch-action: none;
}

/* ———————————————————————————————
   PREMIUM PRODUCT DETAIL (pd-*)
   ——————————————————————————————— */

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb a { color: #64748b; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #2563eb; }
.breadcrumb-sep { color: #cbd5e1; }

/* Hero grid */
.pd-hero {
  padding: 2.5rem 0 0;
}
.pd-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .pd-hero-grid { grid-template-columns: 1fr 1fr; }
}

/* Gallery */
.pd-gallery { position: relative; }
.pd-gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--section-bg);
  border: 1px solid var(--border);
  cursor: crosshair;
}
.pd-gallery-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.pd-gallery-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-gallery-main:hover .pd-gallery-img-wrap img {
  transform: scale(1.08);
}
.pd-gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  color: #1a2744;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pd-gallery-zoom:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.pd-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.pd-thumb {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--section-bg);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.pd-thumb:hover { border-color: #94a3b8; transform: translateY(-2px); }
.pd-thumb.is-active { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* Product info */
.pd-info { padding-top: 0.5rem; }
.pd-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.pd-name {
  font-family: var(--font-display, inherit);
  font-size: 2rem;
  font-weight: 800;
  color: #1a2744;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pd-code {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 0.25rem;
}
.pd-code strong { color: #1a2744; }
.pd-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0.75rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* Action buttons */
.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.pd-btn:hover { transform: translateY(-1px); }
.pd-btn:active { transform: translateY(0); }
.pd-btn svg { flex-shrink: 0; }
.pd-btn-primary {
  background: #1a2744;
  color: #fff;
}
.pd-btn-primary:hover { background: #2a3f5f; color: #fff; }
.pd-btn-outline {
  background: var(--card);
  color: #1a2744;
  border: 1.5px solid var(--border);
}
.pd-btn-outline:hover { border-color: #1a2744; background: var(--section-bg); color: #1a2744; }
.pd-btn-wa {
  background: #25d366;
  color: #fff;
}
.pd-btn-wa:hover { background: #1ebe57; color: #fff; }
.pd-btn-cat {
  background: var(--section-bg);
  color: #475569;
}
.pd-btn-cat:hover { background: var(--border); color: #1a2744; }

/* Meta info */
.pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--section-bg);
  border-radius: 12px;
}
.pd-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #475569;
}
.pd-meta-item svg { color: #2563eb; flex-shrink: 0; }

/* Sticky section nav */
.pd-body {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.pd-sticky-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.pd-sticky-nav::-webkit-scrollbar { display: none; }
.pd-sticky-nav a {
  flex-shrink: 0;
  padding: 0.9rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.pd-sticky-nav a:hover { color: #1a2744; }
.pd-sticky-nav a.is-active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

/* Section layout */
.pd-sections {
  padding: 3rem 0 4rem;
}
.pd-section {
  margin-bottom: 3.5rem;
}
.pd-section-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pd-section-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.pd-section-title {
  font-family: var(--font-display, inherit);
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2744;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Overview */
.pd-overview-text {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.25rem;
}
.pd-overview-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}
.pd-overview-text p + p { margin-top: 1rem; }

/* Features grid */
.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.pd-feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pd-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,42,30,0.06);
}
.pd-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.pd-feature-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2744;
}

/* Specs table */
.pd-specs-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pd-specs-table { width: 100%; border-collapse: collapse; }
.pd-specs-table tr { border-bottom: 1px solid #f1f5f9; }
.pd-specs-table tr:last-child { border-bottom: none; }
.pd-spec-label {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2744;
  background: #f8fafc;
  width: 35%;
}
.pd-spec-value {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #475569;
}

/* Applications grid */
.pd-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.pd-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pd-app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(55,42,30,0.06);
}
.pd-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}
.pd-app-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

/* Finishes swatches */
.pd-finishes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pd-finish-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pd-finish-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(55,42,30,0.06);
}
.pd-finish-swatch {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.pd-finish-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

/* Why choose */
.pd-why-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 2rem 2rem;
}
.pd-why-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.pd-why-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60a5fa;
}
.pd-why-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
}

/* Gallery grid */
.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.pd-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--section-bg);
  border: 1px solid var(--border);
}
.pd-gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-gallery-item:hover img { transform: scale(1.05); }

/* Related products */
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.pd-related-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pd-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(55,42,30,0.08);
}
.pd-related-img {
  background: #f8fafc;
  padding: 1rem;
}
.pd-related-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  display: block;
}
.pd-related-body {
  padding: 1rem 1.1rem 1.2rem;
}
.pd-related-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2744;
  margin: 0 0 0.2rem;
}
.pd-related-sku {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0 0 0.6rem;
}
.pd-related-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
}
.pd-related-card:hover .pd-related-link { text-decoration: underline; }

/* Enquiry CTA */
.pd-section-cta { margin-bottom: 0; }
.pd-cta-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 3.5rem 2.5rem;
  isolation: isolate;
}
.pd-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(37,99,235,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 50%);
  z-index: 0;
}
.pd-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.pd-cta-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}
.pd-cta-title {
  font-family: var(--font-display, inherit);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}
.pd-cta-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.pd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.pd-btn-cta-primary {
  background: #2563eb;
  color: #fff;
  padding: 0.8rem 1.5rem;
}
.pd-btn-cta-primary:hover { background: #1d4ed8; color: #fff; }
.pd-btn-cta-wa {
  background: #25d366;
  color: #fff;
  padding: 0.8rem 1.5rem;
}
.pd-btn-cta-wa:hover { background: #1ebe57; color: #fff; }
.pd-btn-cta-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.8rem 1.5rem;
}
.pd-btn-cta-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* —— Empty / Coming Soon —— */
.coming-soon {
  text-align: center;
  padding: 4rem 1.5rem;
  color: #94a3b8;
}
.coming-soon-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}
.coming-soon h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary, #1a2744);
  margin: 0 0 0.4rem;
}
.coming-soon p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

/* product-grid empty state */
.product-grid:empty + .products-empty { display: block; }
.product-grid:not(:empty) + .products-empty { display: none; }

/* ─── Floating WhatsApp Button ─── */
.whatsapp-floating-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-floating-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.whatsapp-floating-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}
@media (max-width: 767px) {
    .whatsapp-floating-button {
        right: 14px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-floating-button svg {
        width: 27px;
        height: 27px;
    }
}
