:root {
  --bg-dark: #09090B;
  --bg-card: #121217;
  --bg-card-hover: #1A1A22;
  --sport-red: #DC2626;
  --sport-red-glow: rgba(220, 38, 38, 0.35);
  --sport-red-dark: #991B1B;
  --titanium: #94A3B8;
  --titanium-light: #CBD5E1;
  --pure-white: #FFFFFF;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-red: rgba(220, 38, 38, 0.4);
  --font-heading: 'Montserrat', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--titanium-light);
  font-family: var(--font-heading);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Carbon Fiber Texture Overlay */
.carbon-weave {
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(27deg, #151515 5px, transparent 5px),
    linear-gradient(207deg, #151515 5px, transparent 5px),
    linear-gradient(27deg, #222 5px, transparent 5px),
    linear-gradient(207deg, #222 5px, transparent 5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px, 10px 10px, 0 0;
}

/* Typography */
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pure-white);
}

.mono-tag {
  font-family: var(--font-mono);
  color: var(--sport-red);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

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

/* Stitching effect */
.leather-stitch-top {
  border-top: 2px dashed var(--sport-red);
  position: relative;
}

.leather-stitch-bottom {
  border-bottom: 2px dashed var(--sport-red);
  position: relative;
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--sport-red);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  display: inline-block;
  box-shadow: 0 0 15px var(--sport-red-glow);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--pure-white);
  letter-spacing: 3px;
}

.brand-name span {
  color: var(--sport-red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--titanium);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pure-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sport-red);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--sport-red);
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--sport-red);
  color: var(--pure-white);
  padding: 0.6rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: var(--sport-red);
  box-shadow: 0 0 20px var(--sport-red-glow);
  transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--sport-red);
  color: var(--pure-white);
  padding: 1rem 2.2rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--sport-red-glow);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.btn-primary:hover {
  background: var(--sport-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--pure-white);
  padding: 1rem 2.2rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--titanium);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sport-red-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  color: var(--sport-red);
  -webkit-text-fill-color: var(--sport-red);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--titanium);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-specs-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid var(--border-red);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--sport-red);
}

.specs-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--sport-red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.specs-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pure-white);
}

/* Scroll Reveal animation states */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: rgba(18, 18, 23, 0.5);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--titanium);
  font-size: 1rem;
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  border-top: 2px solid transparent;
}

.feature-card:hover {
  border-top-color: var(--sport-red);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.feature-card p {
  color: var(--titanium);
  font-size: 0.95rem;
}

/* Category Filter & Catalog */
.catalog-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  color: var(--titanium);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--sport-red);
  color: var(--pure-white);
  border-color: var(--sport-red);
  box-shadow: 0 0 15px var(--sport-red-glow);
}

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

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

.product-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 280px;
  background: #000;
  overflow: hidden;
}

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

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sport-red);
  color: var(--pure-white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--sport-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--titanium);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pure-white);
}

.product-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--sport-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-link:hover {
  color: var(--pure-white);
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 2rem;
  background: rgba(18, 18, 23, 0.4);
  border-top: 1px solid var(--border-dark);
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  position: relative;
  border-left: 3px solid var(--sport-red);
}

.testimonial-quote {
  font-style: italic;
  color: var(--titanium-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sport-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--pure-white);
  font-family: var(--font-mono);
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--titanium);
}

/* Forms & Floating Labels */
.contact-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-bottom: 2px solid var(--titanium);
  padding: 1.25rem 1rem 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--pure-white);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-bottom-color: var(--sport-red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--titanium);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition);
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: 0.3rem;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--sport-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Custom High Tech Map Graphic */
.map-box {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #0d0d12;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid var(--sport-red);
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-dark) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
}

.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-pin-pulse {
  width: 24px;
  height: 24px;
  background: var(--sport-red);
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  box-shadow: 0 0 25px var(--sport-red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.map-info {
  background: rgba(9, 9, 11, 0.95);
  border: 1px solid var(--border-red);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem 2rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px dashed var(--sport-red);
  padding-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--pure-white);
}

.legal-content p, .legal-content ul {
  margin-bottom: 1.25rem;
  color: var(--titanium-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* GDPR Cookie Consent Modal */
.gdpr-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 440px;
  background: rgba(18, 18, 23, 0.95);
  border: 1px solid var(--border-red);
  border-left: 4px solid var(--sport-red);
  padding: 1.75rem;
  z-index: 9999;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gdpr-banner.show {
  transform: translateY(0);
}

.gdpr-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gdpr-text {
  font-size: 0.85rem;
  color: var(--titanium);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.gdpr-text a {
  color: var(--sport-red);
  text-decoration: underline;
}

.gdpr-actions {
  display: flex;
  gap: 0.75rem;
}

.gdpr-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.gdpr-btn-accept {
  background: var(--sport-red);
  color: var(--pure-white);
  font-weight: 700;
}

.gdpr-btn-accept:hover {
  background: var(--sport-red-dark);
}

.gdpr-btn-decline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--titanium);
  border: 1px solid var(--border-dark);
}

.gdpr-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
}

/* Footer */
.site-footer {
  background: #050507;
  border-top: 1px solid var(--border-dark);
  padding: 5rem 2rem 2rem 2rem;
  position: relative;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--titanium);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--pure-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--titanium);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.footer-links a:hover {
  color: var(--sport-red);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--titanium);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gdpr-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}
