:root {
  --navy:#0c1d3a;
  --slate: #3f5265;
  --cream: #f5f1e8;
  --white: #fff;
  --accent: #e74c3c;
}

/* Reset & basis */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--slate);
  background: #fff;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Click priority & stacking --- */
.site-header {
  position: fixed;
  top: 61px;               /* start below the bar */
  left: 0;
  right: 0;
  z-index: 1000;
}
.navbar { position: relative; background: var(--navy);}
.menu-toggle { position: relative; z-index: 1200; pointer-events: auto; }
/* .nav.open on mobile has z-index: 1100 - defined in responsive section */

/* voorkom dat het logo klik onderschept */
.logo img { pointer-events: none; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.navbar {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 130px;
  transform: translateY(20px);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: 0.8; }

/* Flags */
.flags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flags img {
  width: 24px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.flags img:hover { opacity: 1; }

/* === LANGUAGE DROPDOWN === */
.language-selector {
  position: relative;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-dropdown-toggle:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.lang-dropdown-toggle img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-dropdown-toggle .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-selector.open .lang-dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(13, 45, 84, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.language-selector.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.lang-option:hover {
  background: rgba(255,255,255,.15);
}

.lang-option.active {
  background: rgba(74, 158, 255, 0.25);
  color: #4a9eff;
}

.lang-option img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}


/* === DROPDOWN MENUS === */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.dropdown-toggle .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d2d54;
  min-width: 220px;
  list-style: none;
  margin: 8px 0 0 0;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  padding: 0;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s ease;
}
.dropdown-menu a:hover {
  background: rgba(74, 158, 255, 0.2);
  color: #4a9eff;
}

/* === HAMBURGER === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1200; /* Boven alles */
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Actieve X-toestand */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Altijd wit, ook tijdens actief */
.menu-toggle.open span {
  background: #fff;
}

/* Hover subtiel lichter */
.menu-toggle:hover span {
  background: rgba(255,255,255,0.85);
}

/* === MOBILE MENU - Now handled by .nav.open in responsive section === */

/* === HERO WITH SLIDESHOW === */
.hero {
  position: relative;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center; 
  color: #fff;
  overflow: hidden;
}

/* Hero slideshow container */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Individual slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Dark overlay on top of slideshow */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.35));
  z-index: 1;
}

/* Slideshow dots/indicators */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 800px; 
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 12px rgba(0,0,0,.5);
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 44px;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.btn-glass {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 30px rgba(0,0,0,.25);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-glass:hover {
  background: rgba(255,255,255,.30);
  transform: translateY(-3px);
}
.hero a, .hero a:visited { color: #fff; text-decoration: none; }

/* === SECTIONS === */
section { padding: 100px 0; }
section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2733;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-align: center;
}
section .sub {
  font-size: 1.2rem;
  color: #5f6368;
  text-align: center;
  margin: 0 0 40px;
}

/* === PRODUCTS === */
.products { 
  background: #f9fafc;
  padding-top: 50px !important; /* Half van normale 100px */
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.product-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.1);
  transition: transform .2s ease;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { 
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.product-info { padding: 24px; }
.product-info h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--navy);
}
.product-info p { 
  margin: 0;
  color: var(--slate);
}

/* === FEATURES / ABOUT === */
.features, .about {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.feature-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a9eff, #0c1d3a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Desktop: hover trigger */
@media (min-width: 901px) {
  .feature-item:hover::before {
    transform: scaleX(1);
  }
}

/* Mobile: scroll-triggered animation */
@media (max-width: 900px) {
  .feature-item.in-view::before {
    transform: scaleX(1);
  }
  
  .feature-item:not(.in-view)::before {
    transform: scaleX(0);
  }
}

/* Hover effect for card lift on all devices */
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.feature-icon:empty {
  display: none;
  margin-bottom: 0;
}

.feature-item h3 { 
  color: var(--navy); 
  margin-bottom: 16px;
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-item p {
  color: var(--slate);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* === B2B / PARTNERSHIPS === */
.b2b, .partnerships { background: #fff; }
.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.partnership-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(12, 29, 58, 0.08);
  position: relative;
  overflow: hidden;
}

.partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a9eff, #0c1d3a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Desktop: hover trigger */
@media (min-width: 901px) {
  .partnership-card:hover::before {
    transform: scaleX(1);
  }
}

/* Mobile: scroll-triggered animation */
@media (max-width: 900px) {
  .partnership-card.in-view::before {
    transform: scaleX(1);
  }
  
  .partnership-card:not(.in-view)::before {
    transform: scaleX(0);
  }
}

/* Hover effect for card lift on all devices */
.partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border-color: rgba(74, 158, 255, 0.2);
}

.partnership-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.partnership-icon:empty {
  display: none;
  margin-bottom: 0;
}

.partnership-card h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
}
.partnership-card p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.partnership-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a9eff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.partnership-card a:hover {
  gap: 10px;
  color: var(--navy);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 50px;
  align-items: start;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}

/* === CONTACT === */
.contact {
  background: linear-gradient(135deg, #f6f8fb 0%, #fff 100%);
  text-align: center;
}

.contact h2 {
  margin-bottom: 16px;
}

.contact .sub {
  font-size: 1.25rem;
  color: #5f6368;
  margin-bottom: 50px;
}

.contact-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 40px;
  background: #0c1d3a;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
  font-size: 1.1rem;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.9);
}
.contact-info strong {
  color: #4a9eff;
}

/* --- CONTACT FORM MODAL --- */
.contact-btn {
  margin-top: 30px;
}

.contact .contact-btn .btn-glass,
.contact-btn .btn-glass {
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a9eff, #3b7fd9) !important;
  border: 2px solid rgba(74, 158, 255, 0.5) !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(74, 158, 255, 0.3) !important;
  backdrop-filter: none !important;
}

.contact .contact-btn .btn-glass:hover,
.contact-btn .btn-glass:hover {
  background: linear-gradient(135deg, #5aa9ff, #4a9eff) !important;
  border-color: rgba(74, 158, 255, 0.8) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.4) !important;
  color: #fff !important;
}

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.contact-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

.modal-content iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

#closeModal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
  transition: color 0.2s ease;
}

#closeModal:hover {
  color: var(--accent);
}

/* === FOOTER === */
.site-footer {
  background: rgba(10,35,66,.65);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 100px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.footer-social img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.footer-social a:hover { opacity: 1; }
.site-footer .legal { opacity: .9; margin: 18px 0; }
.site-footer .copy { opacity: .7; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  
  /* Hide desktop nav completely on mobile */
  .nav { 
    display: none;
  }
  
  /* Show nav when open - transform it into mobile menu */
  .nav.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 35, 66, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1100;
    padding-top: 120px;
    overflow-y: auto;
  }
  
  .nav.open .nav-links {
    display: block;
    list-style: none;
    padding: 0 30px;
    margin: 0;
  }
  
  .nav.open .nav-links > li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  
  .nav.open .nav-links > li > a {
    display: block;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  /* Language dropdown mobile styles */
  .language-selector {
    padding: 16px 0;
    border-bottom: none;
  }
  
  .lang-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .lang-dropdown-menu {
    position: static;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: all 0.3s ease, max-height 0.3s ease, opacity 0.3s ease;
    padding: 0;
    background: rgba(13, 45, 84, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
  }
  
  .language-selector.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 8px;
  }
  
  .lang-option {
    padding: 12px 16px;
    background: transparent;
    border-radius: 8px;
  }
  
  .lang-option:hover {
    background: rgba(255,255,255,.15);
  }
  
  .lang-option.active {
    background: rgba(74, 158, 255, 0.25);
  }
  
  .navbar { height: 80px; }
  .logo img { height: 90px; transform: translateY(10px); }
  section { padding: 70px 0; }
  section h2 { font-size: 2.2rem; }
  
  /* Hero mobile adjustments */
  .hero {
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  
  /* Hero dots mobile position */
  .hero-dots {
    bottom: 20px;
  }
  
  /* Features grid - single column on tablet */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Partnerships grid - single column on tablet */
  .partnerships-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { max-height: none; }
  
  /* Mobile Dropdowns in menu */
  .dropdown-toggle {
    justify-content: space-between;
    padding: 16px 24px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(13, 45, 84, 0.5);
    border-radius: 0;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .has-dropdown.open .dropdown-menu {
    max-height: 300px;
  }
  
  .has-dropdown.open .arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-menu a {
    padding: 12px 24px 12px 44px;
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .hero-content h1 { font-size: 2.3rem; }
  .hero-subtitle { font-size: 1.15rem; margin-bottom: 32px; }
  .btn-glass { padding: 14px 28px; font-size: 1rem; }
  
  /* Feature cards stack better on mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-item {
    padding: 30px 24px;
  }
  
  .feature-item h3 {
    font-size: 1.2rem;
  }
  
  .feature-item p {
    font-size: 0.95rem;
  }
}

/* --- Category headers spacing fix --- */
.category-header {
  padding: 180px 20px 80px;
  background: #f6f8fb;
  text-align: center;
}

.category-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2733;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.category-header p {
  font-size: 1.25rem;
  color: #5f6368;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .category-header {
    padding-top: 200px;
  }

  .category-header h1 {
    font-size: 2.2rem;
  }

  .category-header p {
    font-size: 1.1rem;
  }
}

/* ================================================
   GLOVES PAGE STYLES - Add to main.css
   ================================================ */

/* === GLOVES HERO === */
.gloves-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  color: #fff;
  overflow: hidden;
  margin-top: 100px; /* Account for fixed header */
  padding: 80px 0;
}

.gloves-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.3));
  z-index: 1;
}

.gloves-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
}

.gloves-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.gloves-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-shadow: 0 3px 12px rgba(0,0,0,.5);
}

.gloves-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  margin: 0 0 40px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.gloves-hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.gloves-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 600;
}

.gloves-hero-feature .icon {
  font-size: 20px;
}

/* === GLOVES SERIES SECTION === */
.gloves-series {
  background: #f9fafc;
  padding: 100px 0;
}

.gloves-series h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px;
}

.series-block {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.series-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

/* Series specific gradients */
.series-block.alpin .series-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.series-block.urban .series-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.series-block.velvet .series-header {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.series-header {
  padding: 40px;
  text-align: center;
  color: #fff;
}

.series-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.series-tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
}

.series-body {
  padding: 40px;
}

.series-info {
  margin-bottom: 40px;
}

.series-description {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.series-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.series-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
}

.series-feature .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

/* Models Grid */
.series-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.glove-model-card {
  position: relative;
  background: #f9fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.glove-model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  border-color: #4a9eff;
}

.eco-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4CAF50;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10;
}

.model-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-image .placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.model-details {
  padding: 25px;
}

.model-details h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.model-material {
  color: var(--slate);
  font-size: 0.95rem;
  margin: 0 0 15px;
}

.model-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.spec-battery {
  color: #666;
  font-size: 0.9rem;
}

.model-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2a5298;
  margin: 0 0 15px;
}

.model-usp {
  color: var(--slate);
  font-style: italic;
  font-size: 0.9rem;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin: 0;
}

/* === COMPARISON TABLE === */
.gloves-comparison {
  background: white;
  padding: 100px 0;
}

.comparison-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,.05);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.comparison-table th.alpin-col {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-table th.urban-col {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.comparison-table th.velvet-col {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: #f9fafc;
}

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--navy);
}

.comparison-table .price {
  font-weight: 700;
  color: #2a5298;
}

/* === TECHNOLOGY SECTION === */
.gloves-tech {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 100px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tech-item {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a9eff, var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.tech-item:hover::before {
  transform: scaleX(1);
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, rgba(74,158,255,0.1) 0%, rgba(12,29,58,0.1) 100%);
  border-radius: 50%;
}

.tech-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 15px;
}

.tech-item p {
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

/* === CTA SECTION === */
.gloves-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gloves-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: 1;
}

.gloves-cta .container {
  position: relative;
  z-index: 2;
}

.gloves-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 20px;
  text-transform: none;
  color: white;
}

.gloves-cta p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin: 0 0 40px;
}

.gloves-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.gloves-cta .btn-glass {
  color: white !important;
}

.gloves-cta .btn-secondary {
  background: transparent;
  border: 2px solid white;
}

.gloves-cta .btn-secondary:hover {
  background: rgba(255,255,255,.2);
}

/* === ISPO ANNOUNCEMENT BAR === */
.ispo-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #2a3f8f 0%, #1a2959 100%);
  z-index: 1001;
  padding: 8px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  height: 61px;
}
.ispo-bar-content {
  display: inline-block;
  transition: transform 0.3s ease;
}

.ispo-bar-content:hover {
  transform: scale(1.05);
}

.ispo-announcement-bar img {
  height: 45px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Verschuif ALLES naar beneden */
body {
  padding-top: 61px; /* Hoogte van announcement bar */
}

/* Header blijft fixed maar schuift naar beneden */
.site-header {
  position: fixed;
  top: 61px; /* Onder de announcement bar */
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

/* Hero en andere sections aanpassen */
.hero,
.gloves-hero,
.category-header {
  margin-top: 100px; /* Alleen voor header hoogte, body padding zorgt voor announcement bar */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ispo-announcement-bar {
    padding: 5px 0;
    height: 45px;
  }
  
  .ispo-announcement-bar img {
    height: 35px;
  }
  
  body {
    padding-top: 45px;
  }
  
  .site-header {
    top: 45px;
  }
  
  .hero,
  .gloves-hero,
  .category-header {
    margin-top: 80px;
  }
}