/* VAJRA — Products Page (Home blue luxury theme) */

.products-page {
  --prod-blue: var(--blue);
  --prod-blue-bright: var(--blue-bright);
  --prod-blue-soft: rgba(59, 139, 255, 0.12);
  --prod-blue-glow: rgba(59, 139, 255, 0.35);
  --prod-navy: #03050a;
  --prod-navy-mid: #0a1220;
  --prod-stage-bg: #eef1f6;
  --hero-top: calc(var(--nav-h) + 1.25rem);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(59, 139, 255, 0.08), transparent 50%),
    var(--black);
}

/* Compact hero */
.products-page .prod-hero.hero-banner {
  min-height: min(72vh, 640px);
  padding-bottom: clamp(1.75rem, 4vh, 2.5rem);
}

.products-page .hero-content-box {
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.products-page .hero-cta {
  margin-bottom: 0;
}

.products-page.home-page {
  --section-pad-y: clamp(5.5rem, 12vh, 8.5rem);
  --section-gap: clamp(2.75rem, 5vh, 4rem);
}

/* Mouse-follow electric blue glow */
.prod-page-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(59, 139, 255, 0.18), rgba(110, 181, 255, 0.06) 45%, transparent 70%);
  filter: blur(52px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s var(--ease);
}

.products-page.is-glow-active .prod-page-glow {
  opacity: 1;
}

/* Hero particles & ambient blue lighting */
.prod-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.prod-hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 55% 45% at 15% 55%, rgba(59, 139, 255, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 35% at 88% 25%, rgba(110, 181, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 30% 25% at 50% 100%, rgba(59, 139, 255, 0.08), transparent 55%);
  pointer-events: none;
}

/* Floating glass UI — blue neon */
.prod-hero-floats {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.prod-float-ui {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(6, 10, 18, 0.62);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(110, 181, 255, 0.28);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(59, 139, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: 140px;
  animation: none;
}

.prod-float-ui i {
  display: block;
  font-size: 1.1rem;
  color: var(--blue-bright);
  text-shadow: 0 0 16px rgba(59, 139, 255, 0.6);
  margin-bottom: 0.35rem;
}

.prod-float-ui span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.prod-float-ui em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.62rem;
  color: var(--silver);
  letter-spacing: 0.04em;
}

.prod-float-ui--switch {
  top: 28%;
  right: clamp(6%, 12vw, 14%);
  animation-delay: 0s;
}

.prod-float-ui--light {
  top: 52%;
  right: clamp(4%, 8vw, 10%);
  animation-delay: -2.3s;
}

.prod-float-ui--secure {
  top: 38%;
  right: clamp(18%, 22vw, 26%);
  animation-delay: -4.6s;
}

@keyframes prodFloatDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .prod-hero-floats { display: none; }
}

@media (max-width: 768px) {
  .prod-page-glow { display: none; }
}

/* Trust strip */
.prod-trust-strip .trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.prod-trust-strip .trust-tags i {
  color: var(--blue-bright);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 6px rgba(59, 139, 255, 0.5));
}

/* Catalog section — deep navy + blue atmosphere */
.prod-catalog-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(59, 139, 255, 0.1), transparent 55%),
    linear-gradient(180deg, var(--prod-navy-mid) 0%, var(--black) 100%);
  border-top: 1px solid rgba(110, 181, 255, 0.08);
}

.prod-catalog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 181, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 181, 255, 0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.prod-section-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 95vw);
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 139, 255, 0.2), transparent 68%);
  filter: blur(70px);
  pointer-events: none;
}

.prod-catalog-section .container-wide {
  position: relative;
  z-index: 1;
}

.prod-catalog-section .section-eyebrow {
  color: var(--blue-bright);
  text-shadow: 0 0 24px rgba(59, 139, 255, 0.3);
}

/* Product cards — glassmorphism + electric blue */
.prod-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.5rem);
}

.prod-hub-card {
  --card-glow-x: 50%;
  --card-glow-y: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(10, 14, 22, 0.65);
  border: 1px solid rgba(110, 181, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.45s var(--ease),
    border-color 0.4s,
    box-shadow 0.45s;
  transform-style: preserve-3d;
}

.prod-hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    400px circle at var(--card-glow-x) var(--card-glow-y),
    rgba(110, 181, 255, 0.55),
    rgba(59, 139, 255, 0.15) 35%,
    transparent 55%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  z-index: 3;
}

.prod-hub-card:hover::before {
  opacity: 1;
}

.prod-hub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 181, 255, 0.45);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(59, 139, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prod-hub-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.prod-hub-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(3, 5, 10, 0.82) 100%),
    linear-gradient(135deg, rgba(59, 139, 255, 0.2) 0%, transparent 52%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s;
}

.prod-hub-card:hover .prod-hub-card-media::after {
  background:
    linear-gradient(180deg, transparent 30%, rgba(3, 5, 10, 0.75) 100%),
    linear-gradient(135deg, rgba(59, 139, 255, 0.35) 0%, transparent 58%);
}

.prod-hub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.86) hue-rotate(-6deg);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}

.prod-hub-card:hover .prod-hub-card-media img {
  transform: scale(1.02);
  filter: saturate(0.95) contrast(1.1) brightness(0.92) hue-rotate(-10deg);
}

.prod-hub-card-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 55% 45% at var(--card-glow-x) var(--card-glow-y),
    rgba(110, 181, 255, 0.35),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.prod-hub-card:hover .prod-hub-card-shine {
  opacity: 1;
}

.prod-hub-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
  position: relative;
  z-index: 2;
}

/* Blue glass icons */
.prod-hub-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(59, 139, 255, 0.1);
  border: 1px solid rgba(110, 181, 255, 0.3);
  color: var(--blue-bright);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 20px rgba(59, 139, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.prod-hub-card:hover .prod-hub-icon {
  background: rgba(59, 139, 255, 0.22);
  border-color: rgba(110, 181, 255, 0.55);
  box-shadow:
    0 0 28px rgba(59, 139, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
}

.prod-hub-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.prod-hub-card-body p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--silver);
  margin-bottom: 0.85rem;
}

.prod-hub-link {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s var(--ease), color 0.3s, text-shadow 0.3s;
}

.prod-hub-card:hover .prod-hub-link {
  gap: 0.55rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(59, 139, 255, 0.5);
}

.products-page .cta-band {
  margin-top: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 139, 255, 0.12), transparent),
    var(--black);
}

/* ═══ Product shop + filters ═══ */
.prod-shop {
  position: relative;
  padding: clamp(2.5rem, 5vh, 3.5rem) 0 clamp(2.75rem, 5vh, 3.75rem);
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(59, 139, 255, 0.1), transparent 55%),
    linear-gradient(180deg, var(--prod-navy-mid) 0%, var(--black) 100%);
  border-top: 1px solid rgba(110, 181, 255, 0.08);
}

.prod-shop-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw);
  height: 280px;
  background: radial-gradient(ellipse, rgba(59, 139, 255, 0.14), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.prod-shop .container-wide {
  position: relative;
  z-index: 1;
}

.prod-shop-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(1.35rem, 2.5vh, 1.75rem);
}

.prod-shop-intro .section-lead {
  margin: 0 auto;
}

.prod-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: clamp(1.35rem, 2.5vh, 1.75rem);
}

.prod-filter-btn {
  padding: 0.62rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    color 0.35s,
    border-color 0.35s,
    background 0.35s,
    box-shadow 0.35s,
    transform 0.35s var(--ease);
}

.prod-filter-btn:hover {
  color: #fff;
  border-color: rgba(110, 181, 255, 0.35);
  background: rgba(59, 139, 255, 0.08);
  box-shadow: 0 0 20px rgba(59, 139, 255, 0.12);
}

.prod-filter-btn.is-active {
  color: #fff;
  border-color: rgba(110, 181, 255, 0.5);
  background: rgba(59, 139, 255, 0.18);
  box-shadow:
    0 0 28px rgba(59, 139, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.prod-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.prod-shop-grid--series {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 1180px;
  margin: 0 auto;
}

.prod-tile {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(14, 16, 22, 0.6);
  border: 1px solid rgba(110, 181, 255, 0.1);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    border-color 0.35s,
    box-shadow 0.4s;
}

.prod-tile--series {
  background:
    linear-gradient(165deg, rgba(22, 28, 42, 0.92) 0%, rgba(10, 12, 18, 0.88) 100%);
  border-color: rgba(180, 195, 220, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.prod-tile--series:hover {
  border-color: rgba(140, 175, 230, 0.42);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(59, 139, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.prod-tile.is-hidden {
  display: none;
}

.prod-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 181, 255, 0.38);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(59, 139, 255, 0.15);
}

.prod-tile-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.prod-tile-stage {
  position: relative;
  aspect-ratio: 5 / 3.6;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.85rem;
  background: linear-gradient(165deg, #fafbfc 0%, var(--prod-stage-bg) 50%, #e4e8ef 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.prod-tile-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(255, 255, 255, 0.95), transparent 70%);
  pointer-events: none;
}

.prod-tile-stage--switch img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(88%, 200px);
  max-height: 130px;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.prod-tile-stage--showcase {
  aspect-ratio: auto;
  min-height: 0;
  padding: 0;
  display: block;
  background: #060a12;
}

.prod-tile-stage--showcase::before {
  display: none;
}

.prod-tile-stage--showcase .vajra-showcase::after {
  display: none;
}

.prod-tile-stage--showcase .vajra-showcase img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #060a12;
}

.prod-tile:hover .prod-tile-stage--showcase .vajra-showcase img {
  transform: scale(1.03);
}

.prod-tile:hover .prod-tile-stage--switch img {
  transform: scale(1.06);
}

.prod-tile-body {
  padding: 0.95rem 1rem 1.05rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-tile--series .prod-tile-body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.prod-tile-type {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.3rem;
}

.prod-tile--series .prod-tile-type {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.45rem;
  color: rgba(170, 200, 255, 0.95);
  text-shadow: 0 0 18px rgba(59, 139, 255, 0.35);
}

.prod-tile-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.35rem;
}

.prod-tile--series .prod-tile-title {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}

.prod-tile-desc {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--silver);
  flex: 1;
}

.prod-tile--series .prod-tile-desc {
  font-size: 0.8rem;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: rgba(200, 210, 228, 0.88);
  margin-bottom: 0;
}

.prod-tile-spec-divider {
  height: 1px;
  margin: 1rem 0 0.75rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 195, 220, 0.35) 18%,
    rgba(220, 230, 245, 0.55) 50%,
    rgba(180, 195, 220, 0.35) 82%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(59, 139, 255, 0.12);
}

.prod-tile-spec-label {
  margin: 0 0 0.65rem;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(160, 175, 200, 0.75);
}

.prod-tile-modules {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prod-tile-modules li {
  flex: 1 1 auto;
  min-width: 2.35rem;
  text-align: center;
}

.prod-tile-modules li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  padding: 0.38rem 0.45rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(235, 242, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(180, 195, 220, 0.18);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(59, 139, 255, 0.06);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.prod-tile--series:hover .prod-tile-modules li span {
  border-color: rgba(110, 181, 255, 0.4);
  background: rgba(59, 139, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(59, 139, 255, 0.2);
}

.prod-tile-stage--color {
  background: linear-gradient(165deg, #f8f9fc 0%, #e8ecf4 45%, #dce4f0 100%);
}

.prod-tile-stage--luxury {
  background: linear-gradient(165deg, #f2f4f8 0%, #e2e6ee 40%, #d4dae6 100%);
}

.prod-tile-stage--luxury::before {
  background: radial-gradient(ellipse 65% 50% at 50% 35%, rgba(59, 139, 255, 0.08), transparent 72%);
}

.prod-shop-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--silver-dim);
}

.prod-shop-note a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Smart home ecosystem showcase */
.prod-ecosystem-showcase {
  padding: clamp(2.5rem, 5vh, 3.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(59, 139, 255, 0.04) 0%, transparent 100%);
}

.prod-ecosystem-showcase__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(1.5rem, 3vh, 2.25rem);
}

.prod-ecosystem-hub {
  margin: 0 auto clamp(1.75rem, 3vh, 2.5rem);
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(110, 181, 255, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 40px rgba(59, 139, 255, 0.1);
}

.prod-ecosystem-hub .vajra-showcase {
  border-radius: inherit;
}

.prod-ecosystem-hub .vajra-showcase::after {
  display: none;
}

.prod-ecosystem-showcase__visual {
  margin: 0;
}

.prod-ecosystem-showcase__visual .vajra-range-grid {
  border-radius: 20px;
}

/* Smart home range links */
.prod-range-compact {
  padding: clamp(2rem, 4vh, 2.75rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black-soft);
}

.prod-range-compact-head {
  text-align: center;
  margin-bottom: 1.15rem;
}

.prod-range-compact-head .section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0;
}

.prod-range-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.prod-range-links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.prod-range-links a:hover {
  color: #fff;
  border-color: rgba(110, 181, 255, 0.35);
  background: rgba(59, 139, 255, 0.1);
  box-shadow: 0 0 16px rgba(59, 139, 255, 0.12);
}

@media (max-width: 1100px) {
  .prod-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prod-shop-grid--series {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .prod-shop-grid--series .prod-tile:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .prod-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prod-shop-grid--series {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .prod-shop-grid--series .prod-tile:last-child {
    grid-column: auto;
    max-width: none;
  }

  .prod-tile-modules {
    justify-content: center;
    gap: 0.45rem;
  }

  .prod-filter-btn {
    font-size: 0.62rem;
    padding: 0.55rem 1rem;
  }
}

@media (max-width: 480px) {
  .prod-shop-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prod-float-ui { animation: none; }
  .prod-tile:hover { transform: translateY(-3px); }
}
