/* ================================================================
   AURORA SECURITY — Global Design System
   Aqara-inspired premium smart lock store
   ================================================================ */

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

:root {
  --aurora-blue:        #1769ff;
  --aurora-blue-dark:   #0d5ae5;
  --aurora-blue-light:  #4d8eff;
  --aurora-teal:        #00c4cc;
  --aurora-black:       #080d1a;
  --aurora-dark:        #0d1426;
  --aurora-dark-2:      #111827;
  --aurora-gray-100:    #f5f6fa;
  --aurora-gray-200:    #e8eaf0;
  --aurora-gray-300:    #d1d5e0;
  --aurora-gray-400:    #9aa0b8;
  --aurora-gray-600:    #6b7280;
  --aurora-white:       #ffffff;
  --aurora-text:        #1a1f36;
  --aurora-radius:      8px;
  --aurora-radius-lg:   14px;
  --aurora-max:         1240px;
  --aurora-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --aurora-shadow:      0 4px 24px rgba(23, 105, 255, 0.08);
  --aurora-shadow-lg:   0 16px 48px rgba(0, 0, 0, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--aurora-text);
  background: var(--aurora-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: var(--aurora-max); margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aurora-blue);
  margin-bottom: 12px;
}

.label--light { color: rgba(100, 160, 255, 0.9); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--aurora-radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--aurora-ease);
  white-space: nowrap;
  font-family: inherit;
}

.btn svg { flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--aurora-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--aurora-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(23, 105, 255, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--aurora-text);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.btn-outline-dark:hover {
  background: var(--aurora-gray-100);
  border-color: var(--aurora-text);
}

.btn-ghost {
  background: transparent;
  color: var(--aurora-blue);
  padding: 8px 0;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--aurora-blue-dark); }

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--aurora-blue);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 24px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  letter-spacing: 0.01em;
}

.announce-bar a { color: #fff; text-decoration: underline; }
.announce-bar__mobile { display: none; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 13, 26, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: top 0.3s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.nav__logo-text span { color: var(--aurora-teal); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--aurora-blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: #fff;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--aurora-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--aurora-radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  box-shadow: var(--aurora-shadow-lg);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  top: calc(100% + 8px);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.65);
}
.nav__dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav__dropdown-menu a::after { display: none; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__phone {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__phone:hover { color: #fff; }

.nav__cta {
  background: var(--aurora-blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav__cta:hover { background: var(--aurora-blue-dark); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Page offset ── */
.page-offset { padding-top: calc(38px + 64px); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  max-height: 940px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--aurora-black);
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw; /* 9/16 */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(8, 13, 26);
  transition: background 1.2s ease;
  pointer-events: none;
}
.hero__video-overlay.playing {
  background: rgba(4, 8, 16, 0.72);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 65% 35%, rgba(23, 105, 255, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0, 196, 204, 0.10) 0%, transparent 60%);
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,.025) 60px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero__content {
  max-width: 760px;
  animation: auroraFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aurora-teal);
  margin-bottom: 20px;
  background: rgba(0, 196, 204, 0.1);
  border: 1px solid rgba(0, 196, 204, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}

.hero__heading {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}

.hero__heading strong {
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__heading .grad {
  font-weight: 600;
  background: linear-gradient(135deg, var(--aurora-blue-light), var(--aurora-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero__brands {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero__brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.5px;
}

.hero__brand-badge span { color: #fff; }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats strip */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(8,13,26,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__stats-inner {
  display: flex;
  justify-content: flex-start;
  max-width: var(--aurora-max);
  margin: 0 auto;
  padding: 0 28px;
}

.hero__stat {
  padding: 16px 32px 16px 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero__stat:last-child { border-right: none; margin-right: 0; }

.hero__stat-num,
.hero__stat strong {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff !important;
  letter-spacing: -0.2px;
  line-height: 1;
  margin-bottom: 5px;
}

.hero__stat-lbl,
.hero__stat span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.55) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Section Shared ── */
.section { padding: 88px 0; }
.section--dark { background: var(--aurora-dark); color: #fff; }
.section--black { background: var(--aurora-black); color: #fff; }
.section--gray { background: var(--aurora-gray-100); }
.section--white { background: var(--aurora-white); }

.section__header { margin-bottom: 48px; }
.section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--aurora-text);
  letter-spacing: -0.7px;
  line-height: 1.15;
}
.section__title--light { color: #fff; }

/* ── Feature Cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--aurora-gray-200);
  border-radius: var(--aurora-radius-lg);
  overflow: hidden;
}

.feature-card {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--aurora-gray-200);
  transition: background 0.25s;
  background: var(--aurora-white);
}

.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--aurora-gray-100); }

.feature-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(23,105,255,.08), rgba(0,196,204,.06));
  border: 1px solid rgba(23,105,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--aurora-blue);
  transition: all 0.3s var(--aurora-ease);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-teal));
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
}

.feature-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--aurora-text);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--aurora-gray-600);
}

/* ── Brand Section ── */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.brand-card {
  position: relative;
  border-radius: var(--aurora-radius-lg);
  padding: 48px 44px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

.brand-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-card--philips {
  background: linear-gradient(135deg, #00174f 0%, #003087 40%, #0052cc 100%);
}

.brand-card--auslock {
  background: linear-gradient(135deg, #080d1a 0%, #0d1a30 40%, #112244 100%);
}

.brand-card__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 8px);
}

.brand-card__logo-area {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px; height: 80px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
}

.brand-card__count {
  font-size: 60px;
  font-weight: 200;
  color: rgba(255,255,255,.08);
  line-height: 1;
  position: absolute;
  top: 32px;
  left: 44px;
  letter-spacing: -3px;
}

.brand-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--aurora-teal);
  margin-bottom: 10px;
}

.brand-card__title {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.brand-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
}

.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.25s;
  align-self: flex-start;
}

.brand-card__cta:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--aurora-gray-200);
  border-radius: var(--aurora-radius-lg);
  overflow: hidden;
  background: var(--aurora-white);
  transition: box-shadow 0.3s var(--aurora-ease), transform 0.3s var(--aurora-ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(23, 105, 255, 0.12);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  aspect-ratio: 1/1;
  background: var(--aurora-gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s var(--aurora-ease);
}

.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__img {
  width: 100%;
  height: 220px;
  background: var(--aurora-gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s var(--aurora-ease);
}

.product-card:hover .product-card__photo { transform: scale(1.05); }

.product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-gray-300);
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1;
}

/* badges overlaid on the image need absolute positioning */
.product-card__img .badge,
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.product-card__img .badge + .badge { left: auto; right: 10px; }

.badge--new     { background: var(--aurora-blue); color: #fff; }
.badge--sale    { background: #e53935; color: #fff; }
.badge--low     { background: #f57c00; color: #fff; }
.badge--ip66    { background: #00897b; color: #fff; }
.badge--auslock { background: var(--aurora-dark); color: var(--aurora-teal); border: 1px solid rgba(0,196,204,.3); }
.badge--philips { background: #003087; color: #fff; }

.product-card__hover-action {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-teal));
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 11px;
  transform: translateY(100%);
  transition: transform 0.25s var(--aurora-ease);
}

.product-card:hover .product-card__hover-action { transform: translateY(0); }

/* card body — used in both old (.product-card__info) and current (.product-card__body) HTML */
.product-card__info,
.product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.product-card__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.brand--philips { color: #003087; }
.brand--auslock { color: var(--aurora-blue); }

.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--aurora-text);
  line-height: 1.35;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 12.5px;
  color: var(--aurora-gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--aurora-gray-200);
}

.product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--aurora-text);
  line-height: 1;
}

.product-card__price-rq {
  font-size: 13px;
  font-weight: 500;
  color: var(--aurora-blue);
}

.stock-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.stock--in  { background: #e8f5e9; color: #2e7d32; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.stock--low { background: #fff3e0; color: #e65100; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.stock--rq  { background: #e3f2fd; color: #1565c0; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }

/* buy-now button inside card body */
.product-card__body .btn,
.product-card__info .btn {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 16px;
  font-size: 13px;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--aurora-gray-200);
  background: var(--aurora-white);
  color: var(--aurora-gray-600);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover { border-color: var(--aurora-blue); color: var(--aurora-blue); }

.filter-tab.active {
  background: var(--aurora-blue);
  border-color: var(--aurora-blue);
  color: #fff;
}

/* ── Tech Pillars (dark) ── */
.tech-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--aurora-radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}

.tech-pillar {
  display: flex;
  gap: 14px;
  padding: 28px 22px;
  background: var(--aurora-black);
  transition: background 0.25s;
}

.tech-pillar:hover { background: rgba(23,105,255,.07); }

.tech-pillar__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(23,105,255,.12);
  border: 1px solid rgba(23,105,255,.15);
  color: var(--aurora-blue);
  display: flex; align-items: center; justify-content: center;
}

.tech-pillar__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.1px;
}

.tech-pillar__desc {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
}

/* ── Trust Bar ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--aurora-gray-200);
}

.trust-item:last-child { border-right: none; }

.trust-item__icon { flex-shrink: 0; color: var(--aurora-blue); }

.trust-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--aurora-text);
  margin-bottom: 4px;
}

.trust-item__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--aurora-gray-600);
  margin-bottom: 6px;
}

.trust-item__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--aurora-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-item__link:hover { text-decoration: underline; }

/* ── Showroom Split ── */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.showroom__image-side {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 380px;
}
.showroom__image-side iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showroom__image-side img { width: 100%; height: 100%; object-fit: cover; }

.showroom__placeholder {
  text-align: center;
  color: #1a237e;
}

.showroom__placeholder svg { opacity: 0.3; margin: 0 auto 16px; }

.showroom__placeholder h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.showroom__placeholder p { font-size: 15px; color: #2c3e7a; line-height: 1.6; }

.showroom__content-side {
  background: var(--aurora-gray-100);
  display: flex;
  align-items: center;
  padding: 64px 56px;
}

.showroom__content { max-width: 460px; }

.showroom__heading {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--aurora-text);
  margin-bottom: 16px;
}

.showroom__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--aurora-gray-600);
  margin-bottom: 28px;
}

.showroom__details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.showroom__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--aurora-text);
  line-height: 1.5;
}

.showroom__detail svg { flex-shrink: 0; color: var(--aurora-blue); margin-top: 2px; }
.showroom__detail a { color: var(--aurora-blue); font-weight: 600; }
.showroom__detail a:hover { text-decoration: underline; }

.showroom__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Newsletter ── */
.newsletter {
  background: var(--aurora-black);
  padding: 80px 0;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.newsletter__heading {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.newsletter__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}

.newsletter__form-group {
  display: flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--aurora-radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.newsletter__form-group:focus-within { border-color: var(--aurora-blue); }

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 18px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  min-width: 0;
}

.newsletter__input::placeholder { color: rgba(255,255,255,.3); }

.newsletter__submit {
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-teal));
  color: #fff;
  border: none;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.newsletter__submit:hover { opacity: 0.9; }

.newsletter__note {
  font-size: 11px;
  color: rgba(255,255,255,.25);
}

.newsletter__note a { color: rgba(255,255,255,.4); text-decoration: underline; }

/* ── Footer ── */
.site-footer {
  background: #050810;
  padding-top: 64px;
  color: rgba(255,255,255,.45);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 48px;
}

.footer__brand { max-width: 320px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-mark {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-teal));
  display: flex; align-items: center; justify-content: center;
}

.footer__logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

.footer__logo-text span { color: var(--aurora-teal); }

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.5;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer__col-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
}

.footer__links li + li { margin-top: 10px; }

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color 0.2s;
  line-height: 1.4;
}

.footer__links a:hover { color: #fff; }

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__addr-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}

.footer__addr-item svg { color: var(--aurora-blue); flex-shrink: 0; margin-top: 2px; }
.footer__addr-item a { color: rgba(255,255,255,.4); }
.footer__addr-item a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 12px; color: rgba(255,255,255,.25); }

.footer__legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

.footer__legal-links a:hover { color: rgba(255,255,255,.75); }

.footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-icon {
  height: 26px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--aurora-gray-200);
  border-radius: var(--aurora-radius-lg);
  overflow: hidden;
  background: var(--aurora-white);
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: var(--aurora-shadow);
  transform: translateY(-3px);
}

.blog-card a { display: block; }

.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--aurora-dark), var(--aurora-dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card__body { padding: 22px 22px 24px; }

.blog-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aurora-blue);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--aurora-text);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--aurora-gray-600);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--aurora-gray-400);
}

.blog-card__meta span + span::before {
  content: '·';
  margin-right: 12px;
}

/* ── Blog Post (Article) ── */
.blog-post-header {
  background: var(--aurora-black);
  padding: 80px 0 64px;
  color: #fff;
}

.post-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--aurora-teal);
  margin-bottom: 14px;
}

.post-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 18px;
  max-width: 880px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}

.post-meta strong { color: rgba(255,255,255,.7); }

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 28px 80px;
}

.post-body h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--aurora-text);
  margin: 48px 0 16px;
  letter-spacing: -0.3px;
  padding-top: 16px;
  border-top: 1px solid var(--aurora-gray-200);
}

.post-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aurora-text);
  margin: 32px 0 12px;
}

.post-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aurora-text);
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
}

.post-body li {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 8px;
}

.post-body strong { color: var(--aurora-text); font-weight: 600; }

.post-body a { color: var(--aurora-blue); text-decoration: underline; }

.post-body blockquote {
  border-left: 3px solid var(--aurora-blue);
  padding: 16px 24px;
  background: rgba(23,105,255,.04);
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}

.post-body blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--aurora-gray-600);
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.post-body th {
  background: var(--aurora-gray-100);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--aurora-text);
  border: 1px solid var(--aurora-gray-200);
}

.post-body td {
  padding: 11px 16px;
  border: 1px solid var(--aurora-gray-200);
  color: #374151;
  vertical-align: top;
}

.post-body tr:nth-child(even) td { background: var(--aurora-gray-100); }

.post-body .callout {
  background: linear-gradient(135deg, rgba(23,105,255,.06), rgba(0,196,204,.04));
  border: 1px solid rgba(23,105,255,.15);
  border-radius: var(--aurora-radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.post-body .callout p { margin: 0; font-size: 15px; }

.post-body code {
  background: var(--aurora-gray-100);
  border: 1px solid var(--aurora-gray-200);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  color: #d63384;
}

/* ── Spec Table ── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 1px solid var(--aurora-gray-200);
  border-radius: var(--aurora-radius);
  overflow: hidden;
  font-size: 14px;
}

.spec-table th {
  background: var(--aurora-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.spec-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--aurora-gray-200);
  color: var(--aurora-text);
  vertical-align: top;
}

.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--aurora-gray-100); }
.spec-table td:first-child { font-weight: 600; color: var(--aurora-gray-600); width: 40%; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--aurora-dark), var(--aurora-dark-2));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(23,105,255,.15) 0%, transparent 70%);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.cta-banner__desc {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.page-link {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--aurora-gray-200);
  color: var(--aurora-gray-600);
  transition: all 0.2s;
  cursor: pointer;
  background: #fff;
}

.page-link.active,
.page-link:hover {
  background: var(--aurora-blue);
  border-color: var(--aurora-blue);
  color: #fff;
}

/* ── Related posts ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--aurora-black);
  z-index: 300;
  padding: 110px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s var(--aurora-ease);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  display: block;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  letter-spacing: -0.3px;
}

.mobile-menu a:hover { color: #fff; }

.mobile-close {
  position: absolute;
  top: 52px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 1;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 24px;
}

.mobile-menu__actions a {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  border: none;
  border-bottom: none !important;
}

.mobile-menu__actions a.btn-primary {
  background: var(--aurora-blue);
  color: #fff;
}

.mobile-menu__actions a.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .announce-bar__full { display: none; }
  .announce-bar__mobile { display: inline; }
  .site-header { top: 38px; }
  .page-offset { padding-top: calc(38px + 64px); }
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .brand-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom__image-side { min-height: 280px; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-card { padding: 32px 28px; min-height: 300px; }
  .brand-card__cta { width: 100%; justify-content: center; margin-top: 20px; }
  .brand-card__logo-area { width: 56px; height: 56px; top: 28px; right: 28px; }
  .brand-card__count { font-size: 44px; top: 24px; left: 28px; }
  .footer__top { flex-direction: column; gap: 40px; }
  .showroom__content-side { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card__img { height: 180px; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  :root { --aurora-max: 100%; }
  .section { padding: 60px 0; }
  .newsletter__form-group { flex-direction: column; border-radius: 10px; overflow: visible; }
  .newsletter__form-group input { border-radius: 8px; width: 100%; }
  .newsletter__form-group button { border-radius: 8px; width: 100%; }
}

@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card__img { height: 200px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .tech-pillars { grid-template-columns: 1fr; }
  .hero__stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0 16px; }
  .hero__stat { display: block !important; padding: 14px 12px; margin-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .hero__stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero__stat strong { font-size: 15px; }
  .hero__stat span { font-size: 9px; letter-spacing: 1.5px; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 12px; }
  .container { padding: 0 16px; }
  .footer__legal-links { flex-wrap: wrap; gap: 10px; }
}

/* ── Product Detail Modal ── */
.pdm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 26, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pdm-overlay.is-open { display: flex; }

.pdm-modal {
  background: var(--aurora-white);
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.pdm-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--aurora-gray-100);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.pdm-close:hover { background: var(--aurora-gray-200); }

/* Gallery side */
.pdm-gallery {
  background: var(--aurora-gray-100);
  border-radius: 16px 0 0 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdm-main-img-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: #f0f1f5;
}

.pdm-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  max-height: 380px;
}

.pdm-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--aurora-gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s, box-shadow 0.2s;
}
.pdm-nav-btn:hover { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.pdm-nav-prev { left: 10px; }
.pdm-nav-next { right: 10px; }
.pdm-nav-btn[hidden] { display: none; }

.pdm-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px;
  overflow-x: auto;
  background: var(--aurora-gray-100);
  flex-shrink: 0;
}
.pdm-thumb {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid transparent;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.pdm-thumb.active { border-color: var(--aurora-blue); }
.pdm-thumb:hover { border-color: var(--aurora-blue-light); }

/* Info side */
.pdm-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.pdm-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--aurora-blue);
}
.pdm-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aurora-text);
  line-height: 1.2;
  margin-top: -4px;
}
.pdm-desc {
  font-size: 14px;
  color: var(--aurora-gray-600);
  line-height: 1.65;
}
.pdm-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pdm-feature-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(23,105,255,0.08);
  color: var(--aurora-blue);
  border: 1px solid rgba(23,105,255,0.18);
}
.pdm-specs-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--aurora-gray-400);
  margin-top: 4px;
}
.pdm-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pdm-specs-table tr { border-bottom: 1px solid var(--aurora-gray-200); }
.pdm-specs-table tr:last-child { border-bottom: none; }
.pdm-specs-table th {
  text-align: left;
  padding: 7px 0;
  font-weight: 600;
  color: var(--aurora-text);
  width: 45%;
}
.pdm-specs-table td {
  padding: 7px 0;
  color: var(--aurora-gray-600);
}
.pdm-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--aurora-gray-200);
  margin-top: auto;
}
.pdm-stock {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.pdm-stock--in { background: #e6f9f0; color: #1a7a4a; }
.pdm-stock--low { background: #fff5e6; color: #b86800; }
.pdm-stock--out { background: #fce8e8; color: #b81a1a; }
.pdm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--aurora-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
}
.pdm-cta:hover { background: var(--aurora-blue-dark); color: #fff; }

@media (max-width: 720px) {
  .pdm-modal {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }
  .pdm-gallery { border-radius: 16px 16px 0 0; }
  .pdm-info { padding: 24px 20px; }
  .pdm-main-img-wrap { min-height: 240px; }
}

/* ── Featured Products Strip ── */
.featured-strip {
  padding: 64px 0 0;
  background: var(--aurora-white);
}

.featured-strip__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.featured-strip__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-top: 6px;
}

.featured-strip__scroll-wrap {
  overflow-x: auto;
  padding: 0 28px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--aurora-max);
  margin: 0 auto;
}
.featured-strip__scroll-wrap::-webkit-scrollbar { display: none; }

.featured-strip__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.fsp-card {
  width: 220px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--aurora-gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.fsp-card:hover {
  box-shadow: 0 8px 32px rgba(23,105,255,0.12);
  transform: translateY(-3px);
}

.fsp-card__img {
  height: 180px;
  background: var(--aurora-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fsp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.fsp-card:hover .fsp-card__img img { transform: scale(1.04); }

.fsp-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.fsp-card__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aurora-blue);
}

.fsp-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--aurora-text);
  line-height: 1.3;
}

.fsp-card__tag {
  font-size: 12px;
  color: var(--aurora-gray-600);
  margin-top: 2px;
}

.fsp-card__cta {
  display: inline-block;
  margin-top: 12px;
  background: var(--aurora-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
  align-self: flex-start;
}

.faq-item {
  border: 1px solid var(--aurora-gray-200);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--aurora-text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--aurora-blue);
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--aurora-gray-600);
  line-height: 1.75;
  font-size: 15px;
}
