/* ==========================================================================
   SALOSPORTS - Premium Custom Sportswear Manufacturing Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Brand Core Palette */
  --black: #080808;
  --dark-1: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --dark-card: #121212;
  --dark-card-hover: #181818;
  
  --white: #ffffff;
  --white-soft: #f5f5f5;
  --gray-100: #e0e0e0;
  --gray-400: #9e9e9e;
  --gray-600: #666666;
  --gray-800: #222222;

  --red: #E31B23;
  --red-dark: #b81219;
  --red-light: #ff454d;
  --red-glow: rgba(227, 27, 35, 0.35);
  --red-subtle: rgba(227, 27, 35, 0.12);

  --peach: #F3B49F;
  --peach-light: #fbeae5;
  --peach-muted: rgba(243, 180, 159, 0.15);
  --peach-glow: rgba(243, 180, 159, 0.25);

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-red: rgba(227, 27, 35, 0.4);

  /* Typography */
  --font-display: 'Bebas Neue', 'Anton', sans-serif;
  --font-heading: 'Anton', 'Space Grotesk', sans-serif;
  --font-sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Spacing System */
  --container-max: 1380px;
  --section-py: clamp(3.5rem, 6.5vw, 6.5rem);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 8px 24px rgba(227, 27, 35, 0.3);
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
}

::selection {
  background-color: var(--red);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.heading-hero {
  font-size: clamp(2.6rem, 6.5vw, 6.2rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-family: var(--font-heading);
}

.heading-section {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.95;
}

.heading-lg {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.heading-md {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.heading-sm {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.text-accent-red {
  color: var(--red);
}

.text-accent-peach {
  color: var(--peach);
}

.text-muted {
  color: var(--gray-400);
}

/* Section Tag / Eyebrow */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.8rem;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-full);
}

.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 2.8vw, 2.5rem);
  padding-right: clamp(1rem, 2.8vw, 2.5rem);
}

.section-padding {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.section-desc {
  color: var(--gray-400);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  max-width: 580px;
  line-height: 1.65;
  margin-top: 0.75rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(227, 27, 35, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-peach {
  background-color: var(--peach);
  color: var(--black);
  font-weight: 800;
}

.btn-peach:hover {
  background-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.btn-link:hover {
  color: var(--red);
}

.btn-link:hover::after {
  transform: scaleX(0.4);
}

/* ==========================================================================
   Announcement Bar (Top Marquee)
   ========================================================================== */
.announcement-bar {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.42rem 0;
  position: relative;
  z-index: 90;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-100);
  padding: 0 1.25rem;
  text-transform: uppercase;
}

.marquee-item span.highlight {
  color: var(--red);
}

.marquee-item span.dot {
  width: 4px;
  height: 4px;
  background: var(--peach);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Header & Sleek Navigation (Sticky & Zero Overlap)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(4, 4, 4, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
}

.brand-logo img.logo-img {
  height: 34px;
  max-width: 175px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover img.logo-img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1.35rem);
  flex-shrink: 1;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-100);
  text-transform: uppercase;
  position: relative;
  padding: 0.35rem 0.15rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Icon Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #080808;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-whatsapp-header:hover {
  background: #2bf074;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp-header svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  color: var(--peach);
  transition: all var(--transition-fast);
}

.btn-call-header:hover {
  background: var(--peach);
  color: var(--black);
  border-color: var(--peach);
  transform: translateY(-2px);
}

.btn-call-header svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Floating WhatsApp Quick Chat Widget (Bottom Right) */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #080808;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.7);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: waPulse 2.5s infinite;
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  background: #2ef777;
  color: #000;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.floating-whatsapp .wa-badge {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.floating-whatsapp .wa-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.08em;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 30px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile Hamburger Toggle */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 8px;
  z-index: 105;
}

.hamburger-line {
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.hamburger-line:nth-child(1) { width: 22px; }
.hamburger-line:nth-child(2) { width: 14px; }
.hamburger-line:nth-child(3) { width: 18px; }

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 20px;
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 20px;
}

/* Fullscreen Mobile Navigation */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #080808;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(5rem, 10vh, 7rem) clamp(1.25rem, 5vw, 3rem) 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-item {
  overflow: hidden;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  text-transform: uppercase;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  padding-left: 0.75rem;
}

.mobile-nav-link:hover .mobile-arrow {
  color: var(--red);
  transform: translateX(8px);
}

.mobile-arrow {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.mobile-menu-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact-info {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gray-400);
}

.mobile-contact-info a {
  color: var(--peach);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.38) contrast(1.15);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.85) 75%, #080808 100%),
              linear-gradient(to bottom, rgba(8,8,8,0.85) 0%, transparent 40%, transparent 65%, #080808 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-badge-wrap {
  margin-bottom: 1.25rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-title .title-line {
  display: block;
  overflow: hidden;
}

.hero-title .highlight-red {
  color: var(--red);
  display: inline-block;
  text-shadow: 0 0 35px rgba(227, 27, 35, 0.45);
}

.hero-desc {
  font-size: clamp(0.98rem, 1.4vw, 1.2rem);
  color: var(--gray-100);
  max-width: 640px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta-bar {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  z-index: 4;
}

.hero-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.scroll-line {
  width: 32px;
  height: 2px;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollScan 2s infinite ease;
}

@keyframes scrollScan {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ==========================================================================
   Editorial Company Statement
   ========================================================================== */
.statement-section {
  background-color: var(--dark-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.statement-quote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.statement-quote span.red-word {
  color: var(--red);
}

.statement-quote span.peach-word {
  color: var(--peach);
}

.statement-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-soft);
  transition: all var(--transition-fast);
}

.pill:hover {
  border-color: var(--red);
  background: var(--dark-3);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Editorial Product Categories Grid
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 350px;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.category-card.col-8 { grid-column: span 8; }
.category-card.col-4 { grid-column: span 4; }
.category-card.col-6 { grid-column: span 6; }
.category-card.col-3 { grid-column: span 3; }
.category-card.col-12 { grid-column: span 12; }

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-md);
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.category-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  filter: brightness(0.68);
}

.category-card:hover .category-bg img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.5) 50%, rgba(8, 8, 8, 0.95) 100%);
  z-index: 2;
}

.category-info {
  position: relative;
  z-index: 3;
  padding: 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.category-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.3rem;
  transition: color var(--transition-fast);
}

.category-card:hover .category-title {
  color: var(--peach);
}

.category-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.category-card:hover .category-arrow-btn {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(-45deg) scale(1.08);
}

/* ==========================================================================
   Featured Products & Filtering
   ========================================================================== */
.product-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-md);
}

.product-thumb-wrap {
  position: relative;
  aspect-ratio: 4/4.5;
  background: #111;
  overflow: hidden;
}

.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.25rem 0.65rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--peach);
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.oem {
  color: var(--red);
  border-color: var(--border-red);
}

.product-quick-actions {
  position: absolute;
  bottom: 0.85rem;
  left: 0;
  width: 100%;
  padding: 0 0.85rem;
  display: flex;
  gap: 0.45rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-normal);
  z-index: 3;
}

.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-actions .btn {
  flex: 1;
  padding: 0.55rem 0.7rem;
  font-size: 0.75rem;
}

.product-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.1;
  transition: color var(--transition-fast);
}

.product-card:hover .product-title {
  color: var(--peach);
}

.product-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.feature-tag {
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  background: var(--dark-2);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-family: var(--font-mono);
}

/* ==========================================================================
   Full Width Brand Parallax Statement
   ========================================================================== */
.brand-parallax-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.brand-parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
}

.brand-parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.brand-parallax-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.brand-parallax-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

/* ==========================================================================
   Why Choose Salosports (Benefits Grid)
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height var(--transition-normal);
}

.benefit-card:hover {
  background: var(--dark-card-hover);
  border-color: var(--border-light);
  transform: translateY(-5px);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  transition: color var(--transition-fast);
}

.benefit-card:hover .benefit-number {
  color: var(--red);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   Manufacturing Process (8-Step Visual Timeline)
   ========================================================================== */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-step-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.process-step-card:hover {
  border-color: var(--border-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-step-card:hover .process-img-wrap img {
  transform: scale(1.06);
}

.process-step-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.process-body {
  padding: 1.25rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.process-desc {
  color: var(--gray-400);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ==========================================================================
   Customization & Decoration Matrix
   ========================================================================== */
.custom-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.custom-matrix-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  transition: all var(--transition-normal);
  position: relative;
}

.custom-matrix-card:hover {
  background: var(--dark-card-hover);
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.custom-icon {
  width: 48px;
  height: 48px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.custom-matrix-card:hover .custom-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.custom-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.custom-card-desc {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.custom-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.custom-spec-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--peach);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.custom-spec-item::before {
  content: '✓';
  color: var(--red);
  font-weight: bold;
}

/* ==========================================================================
   OEM / Private Label Spotlight
   ========================================================================== */
.oem-banner-wrap {
  background: linear-gradient(135deg, #111111 0%, #1a0607 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.oem-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.oem-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.oem-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.oem-feat-icon {
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.oem-feat-text h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.oem-feat-text p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ==========================================================================
   Animated Counter Numbers Section
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--dark-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.stat-box {
  text-align: center;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.stat-number-wrap {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.stat-number-wrap span.stat-suffix {
  color: var(--red);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
}

/* ==========================================================================
   Quality Assurance Standards
   ========================================================================== */
.quality-tabs-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.quality-points-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quality-point-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.quality-point-item.active,
.quality-point-item:hover {
  background: var(--dark-card-hover);
  border-color: var(--border-red);
  transform: translateX(6px);
}

.quality-point-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.quality-point-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red);
}

.quality-point-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.quality-point-desc {
  color: var(--gray-400);
  font-size: 0.84rem;
  line-height: 1.55;
  padding-left: 1.75rem;
}

.quality-visual-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3.2;
}

.quality-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-red);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Masonry Gallery with Vanilla JS Lightbox
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3.2;
  cursor: pointer;
  background: var(--dark-2);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.gallery-caption {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 4, 4, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.lightbox-close-btn:hover {
  color: var(--red);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn.prev { left: -60px; }
.lightbox-nav-btn.next { right: -60px; }

.lightbox-nav-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ==========================================================================
   B2B Testimonials Carousel / Grid
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  background: var(--dark-card-hover);
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: var(--gray-100);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--peach);
}

.author-info h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ==========================================================================
   Dramatic CTA Section
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22);
}

.cta-kinetic-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18vw;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  text-transform: uppercase;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: 0.92;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--gray-100);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--dark-1);
  border-top: 1px solid var(--border);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-logo {
  display: inline-block;
}

.footer-brand-logo img {
  height: 38px;
  width: auto;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-contact-items a {
  color: var(--peach);
}

.footer-contact-items a:hover {
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-link {
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--red);
  padding-left: 0.3rem;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Giant Salosports Watermark in Footer */
.footer-big-brand {
  text-align: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  user-select: none;
}

.footer-giant-word {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 15rem);
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.04);
  display: block;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-600);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   Interactive Forms & RFQ Components
   ========================================================================== */
.rfq-form-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 3rem);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-100);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--red);
  background: var(--dark-3);
  box-shadow: 0 0 0 2px var(--red-subtle);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239e9e9e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}

select.form-control option {
  background: #111;
  color: #fff;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.file-upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  background: var(--dark-2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-upload-box:hover {
  border-color: var(--red);
  background: var(--dark-3);
}

.form-feedback-msg {
  display: none;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.form-feedback-msg.success {
  display: block;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid #25d366;
  color: #25d366;
}

/* ==========================================================================
   Product Detail Specific Styles
   ========================================================================== */
.product-detail-hero {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.product-gallery-view {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-main-view {
  aspect-ratio: 1/1;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails-row {
  display: flex;
  gap: 0.65rem;
}

.thumb-item {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-card);
  transition: border-color var(--transition-fast);
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--red);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.86rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table td {
  padding: 0.75rem 0;
}

.specs-table td:first-child {
  font-family: var(--font-mono);
  color: var(--gray-400);
  width: 40%;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.specs-table td:last-child {
  color: var(--white);
  font-weight: 600;
}

/* ==========================================================================
   Custom Magnetic Cursor (Desktop Only)
   ========================================================================== */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.08s ease-out;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.custom-cursor-follower.hovered {
  width: 62px;
  height: 62px;
  background: rgba(227, 27, 35, 0.85);
  border-color: var(--red);
  backdrop-filter: blur(4px);
}

.custom-cursor-follower.hovered-view::after {
  content: 'VIEW';
}

.custom-cursor-follower.hovered-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

@media (hover: none) or (pointer: coarse) {
  .custom-cursor-dot,
  .custom-cursor-follower {
    display: none !important;
  }
}
