:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --surface: rgba(20, 20, 20, 0.82);
  --surface-strong: rgba(27, 27, 27, 0.92);
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --accent: #ff1a1a;
  --accent-pink: #ff4fd8;
  --accent-purple: #8b5cf6;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top, rgba(255, 26, 26, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 79, 216, 0.09), transparent 18%),
    radial-gradient(circle at 12% 72%, rgba(139, 92, 246, 0.08), transparent 22%),
    linear-gradient(180deg, #090909 0%, #0a0a0a 45%, #111111 100%);
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -5;
  pointer-events: none;
  border-radius: 50%;
}

.site-shell::before {
  top: -12rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 26, 26, 0.16), rgba(255, 79, 216, 0.08), transparent 70%);
  filter: blur(20px);
  animation: drift 16s ease-in-out infinite;
}

.site-shell::after {
  bottom: -14rem;
  left: -10rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.03), transparent 68%);
  filter: blur(24px);
  animation: driftReverse 20s ease-in-out infinite;
}

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

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

.ambient-layer,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-layer {
  z-index: -4;
}

.ambient-layer-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 70%);
  transform: perspective(1000px) rotateX(76deg) translateY(-10%);
  transform-origin: top center;
  opacity: 0.45;
  animation: gridFloat 18s linear infinite;
}

.ambient-layer-glow {
  z-index: -3;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 26, 26, 0.13), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 79, 216, 0.08), transparent 20%),
    radial-gradient(circle at 52% 70%, rgba(139, 92, 246, 0.07), transparent 18%);
  animation: pulseGlow 10s ease-in-out infinite alternate;
}

.ambient-layer-noise {
  z-index: -2;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  animation: noiseShift 16s linear infinite;
}

.cursor-glow {
  z-index: 20;
  opacity: 0;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(255, 26, 26, 0.16), transparent 170px),
    radial-gradient(circle at calc(var(--cursor-x, 50%) + 30px) calc(var(--cursor-y, 50%) + 20px), rgba(255, 79, 216, 0.08), transparent 220px);
  transition: opacity 180ms ease;
}

.topbar,
.section,
.hero,
.subpage-hero {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 79, 216, 0.18);
  box-shadow: var(--shadow), 0 0 26px rgba(255, 26, 26, 0.1);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 26, 26, 0.4);
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.25), rgba(255, 79, 216, 0.1));
  color: var(--text-primary);
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: 0 0 22px rgba(255, 26, 26, 0.4);
}
.subpage .hero-logo {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.brand-text,
.hero-logo h1 {
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 26, 26, 0.45);
  animation: logoPulse 4s ease-in-out infinite;
}

.topnav {
  display: flex;
  gap: 1.4rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.topnav a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text-primary);
  text-shadow:
    0 0 12px rgba(255, 26, 26, 0.45),
    0 0 18px rgba(255, 79, 216, 0.18);
}

.hero {
  position: relative;
  padding: 4.2rem 0 2rem;
}

.hero-free::before {
  content: "";
  position: absolute;
  inset: 2.5rem auto auto -6%;
  width: 56%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 26, 26, 0.1), rgba(255, 79, 216, 0.05), transparent 68%);
  filter: blur(30px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2.2rem;
  align-items: center;
  min-height: 76vh;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #f1b3b3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@font-face {
  font-family: 'Draco';
  src: url('./fonts/Draco.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
.hero-logo {
  font-family: 'Draco', sans-serif;

  /* PERFECT SIZE */
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);

  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* 🔥 RED NEON LOOK */
  color: #ff003c;

  
}
.brand-logo {
  height: 40px;   /* adjust based on your UI */
  width: auto;
  object-fit: contain;
}
.hero-logo {
  display: inline-block;
}
.hero-subtitle {
  margin: 1rem 0 0;
  color: var(--text-primary);
 font-size: clamp(0.85rem, 1.6vw, 1.1rem);;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle span {
  color: var(--accent);
}

.hero-description,
.section-heading p,
.service-card p,
.about-card p,
.contact-card p,
.feature-copy p,
.feature-list,
.highlight-card p,
.subpage-hero p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-description {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(255, 26, 26, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.28), rgba(255, 79, 216, 0.1));
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  overflow: hidden;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 216, 0.55);
  box-shadow: 0 0 24px rgba(255, 26, 26, 0.28), 0 0 26px rgba(255, 79, 216, 0.16);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.24) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-small {
  min-height: 42px;
  padding: 0.72rem 1.15rem;
  font-size: 0.92rem;
}

.hero-metrics,
.highlight-strip,
.products-grid,
.services-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.highlight-strip,
.products-grid,
.services-grid,
.about-grid,
.contact-grid,
.section-heading + .products-grid,
.section-heading + .services-grid,
.section-heading + .about-grid {
  margin-top: 2rem;
}

.hero-metrics article,
.hero-panel-card,
.service-card,
.feature-card,
.about-card,
.contact-card,
.map-card,
.product-card,
.highlight-card,
.subpage-hero {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-free .hero-metrics article {
  background: rgba(20, 20, 20, 0.62);
}

.hero-metrics article::before,
.hero-panel-card::before,
.service-card::before,
.feature-card::before,
.about-card::before,
.contact-card::before,
.map-card::before,
.product-card::before,
.highlight-card::before,
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255, 26, 26, 0.35), rgba(255, 79, 216, 0.14) 24%, transparent 45%, transparent 70%, rgba(139, 92, 246, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.hero-metrics article::after,
.hero-panel-card::after,
.service-card::after,
.feature-card::after,
.about-card::after,
.contact-card::after,
.map-card::after,
.product-card::after,
.highlight-card::after,
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -20% -15%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 26, 0.12), rgba(255, 79, 216, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease, transform 300ms ease;
  transform: translate3d(0, 10px, 0);
}

.hero-metrics article:hover::after,
.hero-panel-card:hover::after,
.service-card:hover::after,
.feature-card:hover::after,
.about-card:hover::after,
.contact-card:hover::after,
.map-card:hover::after,
.product-card:hover::after,
.highlight-card:hover::after,
.subpage-hero:hover::after {
  opacity: 1;
  transform: translate3d(12px, -8px, 0);
}

.hero-metrics article,
.highlight-card,
.product-card,
.service-card,
.feature-card,
.about-card,
.contact-card,
.subpage-hero {
  padding: 1.5rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-metrics article:hover,
.highlight-card:hover,
.product-card:hover,
.service-card:hover,
.feature-card:hover,
.about-card:hover,
.contact-card:hover,
.map-card:hover,
.subpage-hero:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 79, 216, 0.2);
  box-shadow: var(--shadow), 0 0 30px rgba(255, 26, 26, 0.1), 0 0 22px rgba(139, 92, 246, 0.08);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card {
  width: min(100%, 420px);
  padding: 1rem;
}

.hero-floating-card {
  transform: rotate(-1deg);
}

.hero-panel-card:hover {
  transform: translateY(-8px) rotate(-1.6deg);
}

.panel-label,
.panel-badge,
.feature-status,
.stock-chip,
.product-tag,
.highlight-index {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-label,
.feature-status,
.highlight-index {
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.hero-panel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 420ms ease;
}

.hero-panel-card:hover img,
.product-card:hover .product-image-wrap img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.06);
}

.hero-slider {
  position: relative;
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at top right, rgba(255, 26, 26, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #171717, #0c0c0c);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.14), rgba(10, 10, 10, 0.08) 35%, rgba(10, 10, 10, 0.55)),
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 78%);
  pointer-events: none;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 720ms ease, transform 720ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem;
}

.hero-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(10px);
}

.hero-slider-arrow,
.hero-slider-dot {
  border: 0;
  cursor: pointer;
}

.hero-slider-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  transform: translateY(-1px) scale(1.05);
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.3), rgba(255, 79, 216, 0.14));
  box-shadow: 0 0 18px rgba(255, 26, 26, 0.22);
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero-slider-dot.is-active,
.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
  width: 28px;
  background: linear-gradient(90deg, rgba(255, 26, 26, 0.95), rgba(255, 79, 216, 0.82));
  box-shadow: 0 0 16px rgba(255, 26, 26, 0.3);
}

.panel-badge {
  margin-top: 1rem;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.16), rgba(255, 79, 216, 0.12));
  color: #ffd4f6;
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.18);
}

.section {
  padding-top: 4.5rem;
}

.section-heading {
  max-width: 680px;
}

.section-heading h2,
.subpage-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.highlight-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card h2 {
  margin: 1rem 0 0.55rem;
  font-size: 1.5rem;
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 4 / 4.75;
  background:
    radial-gradient(circle at top right, rgba(255, 26, 26, 0.2), transparent 35%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08), transparent 32%),
    linear-gradient(180deg, #161616, #0d0d0d);
  margin: -1.5rem -1.5rem 0;
}

.product-image-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-image-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 420ms ease;
}

.product-image-slide.is-active {
  opacity: 1;
}

.product-image-wrap img {
  width: calc(100% - 0.75rem);
  height: calc(100% - 0.75rem);
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.38);
  transition: transform 420ms ease, filter 420ms ease;
}

.product-image-dots {
  position: absolute;
  inset: auto 1rem 1rem auto;
  z-index: 2;
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.4rem 0.45rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(8px);
}

.product-image-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.product-image-dot.is-active {
  transform: scale(1.2);
  background: linear-gradient(90deg, rgba(255, 26, 26, 0.92), rgba(255, 79, 216, 0.78));
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  background: rgba(10, 10, 10, 0.78);
  color: #f3d0d0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-specs .product-tag {
  position: static;
  background: rgba(255, 255, 255, 0.05);
  color: #f6d6f1;
}

.product-body h3 {
  margin: 1.2rem 0 0;
  font-size: 1.3rem;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin: 1rem 0 0.9rem;
}

.stock-chip {
  padding: 0.48rem 0.78rem;
  background: rgba(255, 255, 255, 0.06);
}

.stock-chip.low-stock {
  background: rgba(255, 26, 26, 0.18);
  color: #ffd1d1;
  box-shadow: 0 0 18px rgba(255, 26, 26, 0.24);
  animation: lowStockBlink 1.8s ease-in-out infinite;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.28), rgba(255, 79, 216, 0.12));
  color: var(--text-primary);
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.32), 0 0 12px rgba(255, 79, 216, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.35rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.reviews-grid {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  margin-top: 2rem;
  animation: reviewsMarquee 42s linear infinite;
}

.reviews-section {
  overflow: hidden;
}

.reviews-section:hover .reviews-grid {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 min(360px, calc(100vw - 3rem));
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 79, 216, 0.04) 45%, rgba(139, 92, 246, 0.05)),
    rgba(18, 18, 18, 0.88);
  box-shadow: var(--shadow);
}

.review-stars {
  margin-bottom: 1rem;
  color: #ffb74a;
  letter-spacing: 0.2em;
}

.review-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.review-card strong {
  display: block;
  margin-top: 1.2rem;
  font-size: 1rem;
}

.review-card span {
  display: block;
  margin-top: 0.25rem;
  color: #f1b3b3;
  font-size: 0.85rem;
}

@keyframes reviewsMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.section-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.1), rgba(255, 79, 216, 0.05) 45%, rgba(139, 92, 246, 0.06)),
    rgba(22, 22, 22, 0.88);
  box-shadow: var(--shadow);
}

.filters-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 79, 216, 0.04) 45%, rgba(139, 92, 246, 0.05)),
    rgba(18, 18, 18, 0.88);
  box-shadow: var(--shadow);
}

.filter-field {
  display: grid;
  gap: 0.45rem;
}

.filter-field span {
  color: #f1b3b3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filter-field input,
.filter-field select {
  min-height: 46px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #111111;
  color: var(--text-primary);
  outline: none;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.filter-field input:focus,
.filter-field select:focus {
  border-color: rgba(255, 79, 216, 0.36);
  box-shadow: 0 0 0 3px rgba(255, 79, 216, 0.08);
}

.results-count {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.section-contact-card h3 {
  margin: 0.4rem 0;
  font-size: 1.35rem;
}

.section-contact-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 26, 26, 0.1), rgba(255, 79, 216, 0.06)), var(--surface-strong);
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li + li {
  margin-top: 0.55rem;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
}

.stats-card {
  display: grid;
  gap: 1rem;
}

.stats-card article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-card article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stats-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.subpage-hero {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 79, 216, 0.04) 35%, rgba(139, 92, 246, 0.05)), rgba(18, 18, 18, 0.86);
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.contact-card {
  display: grid;
  gap: 1.2rem;
}

.contact-item {
  display: grid;
  gap: 0.3rem;
}

.contact-item a {
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-label {
  color: #f1b3b3;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-card {
  min-height: 380px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: none;
  transition: filter 280ms ease, transform 280ms ease;
}

.map-card:hover iframe {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 4rem auto 2rem;
  padding: 1.25rem 1.4rem;
  border-top: 1px solid rgba(255, 26, 26, 0.25);
  color: var(--text-secondary);
}

.footer p {
  margin: 0;
  color: var(--text-primary);
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 26, 26, 0.28), 0 0 18px rgba(255, 79, 216, 0.08);
}

.footer-credit {
  display: block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.75; }
  100% { transform: scale(1.06) translate3d(0, -1.5%, 0); opacity: 1; }
}

@keyframes gridFloat {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 72px, 72px 0; }
}

@keyframes noiseShift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(1%, -1%, 0); }
  100% { transform: translate3d(-1%, 1%, 0); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-24px, 18px, 0); }
}

@keyframes driftReverse {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(22px, -18px, 0); }
}

@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(255, 26, 26, 0.58), 0 0 28px rgba(255, 26, 26, 0.32), 0 0 24px rgba(255, 79, 216, 0.08); }
  50% { text-shadow: 0 0 18px rgba(255, 26, 26, 0.82), 0 0 38px rgba(255, 26, 26, 0.44), 0 0 28px rgba(255, 79, 216, 0.14); }
}

@keyframes lowStockBlink {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 26, 26, 0.18); }
  50% { box-shadow: 0 0 26px rgba(255, 26, 26, 0.35); }
}

@media (max-width: 1080px) {
  .highlight-strip,
  .hero-grid,
  .feature-band,
  .reviews-grid,
  .about-grid,
  .contact-grid,
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }

  .hero-grid {
    min-height: auto;
  }

  .filters-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel {
    justify-content: stretch;
  }

  .hero-panel-card {
    width: 100%;
  }

  .hero-slider-overlay {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-slider-controls {
    align-self: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 0.9rem 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    
    font-size: 0.8rem;
  }

  .topbar > .button-small {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .filters-panel {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 3.5rem;
  }

  .section-heading h2,
  .subpage-hero h1 {
    font-size: 2rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow,
  .ambient-layer,
  .site-shell::before,
  .site-shell::after {
    display: none;
  }
}
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #E1306C; /* Instagram pink */
}
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

.footer .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
}

.footer .brand a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.footer .brand a:hover {
  color: #e1306c; /* Instagram pink */
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
}
.social-icons {
  margin-top: 8px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 12px;
  text-decoration: none;
  color: white;
  font-size: 13px;
  transition: 0.3s;
}

.social-icons i {
  font-size: 16px;
}

.social-icons a:hover {
  color: #E1306C; /* Instagram pink */
}
