
  :root {
    --navy:   #091c38;
    --blue:   #1452a8;
    --cyan:   #2e86de;
    --green:  #78c700;
    --white:  #ffffff;
    --offwhite: #f2f6fc;
    --gray:   #8097b8;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  .cursor {
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: left .06s ease, top .06s ease;
    mix-blend-mode: exclusion;
  }

  /* TOPBAR */
  .topbar {
    background: var(--green);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 20px;
  }

  /* HEADER */
  header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(9,28,56,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .header-inner {
    max-width: 1300px; margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    display: flex; align-items: center; gap: 20px;
  }
  .logo img { height: 54px; display: block; }
  nav { display: flex; gap: 2px; margin-left: 12px; }
  nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem; letter-spacing: .08em;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    padding: 6px 15px; border-radius: 6px;
    transition: color .18s, background .18s;
  }
  nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
  nav a.active { color: var(--green); }
  nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  color: rgba(9,28,56,.95);
}
.nav-item {
  margin-top: 6px;
  position: relative;
  color: rgba(9,28,56,.95);
}
.nav-item:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 5px;
}

  .header-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
  .search-wrap {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    padding: 7px 16px;
  }
  .search-wrap input {
    background: transparent; border: none; outline: none;
    color: #fff; font-family: 'Montserrat', sans-serif;
    font-size: .85rem; width: 160px;
  }
  .search-wrap input::placeholder { color: var(--gray); }
  .btn-cart {
    background: var(--green); color: var(--navy);
    border: none; border-radius: 30px;
    padding: 9px 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: .06em;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    transition: opacity .18s, transform .18s;
  }
  .btn-cart:hover { opacity: .88; transform: scale(1.03); }

  /* HERO */
  .hero {
    min-height: calc(100vh - 40px);
    position: relative;
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(46,134,222,.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,134,222,.1) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: bgDrift 20s linear infinite;
  }
  @keyframes bgDrift {
    from { background-position: 0 0; }
    to   { background-position: 64px 64px; }
  }
  .hero-gradient {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 70% at 15% 55%, rgba(20,82,168,.55) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 85% 15%, rgba(120,199,0,.10) 0%, transparent 60%),
      linear-gradient(170deg, var(--navy) 0%, #0b2044 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1300px; margin: 0 auto;
    padding: 90px 28px 70px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
    flex: 1;
  }

  .hero-left h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.2rem, 8vw, 8rem);
    line-height: .9;
    letter-spacing: .01em;
  }
  .hero-left h1 .accent { color: var(--green); }
  .hero-left h1 .stroke {
    -webkit-text-stroke: 2px rgba(255,255,255,.7);
    color: transparent;
  }
  .hero-tagline {
    margin-top: 24px;
    font-size: 1rem; font-weight: 500;
    color: var(--gray); line-height: 1.75;
    max-width: 430px;
  }
  .hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green); color: var(--navy);
    border: none; border-radius: 4px;
    padding: 14px 34px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.12rem; letter-spacing: .1em;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(120,199,0,0);
    transition: transform .18s, box-shadow .18s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(120,199,0,.38);
  }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: 4px; padding: 14px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.12rem; letter-spacing: .1em;
    cursor: pointer;
    transition: border-color .18s, background .18s;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

  .hero-stats {
    margin-top: 54px; display: flex; gap: 40px;
  }
  .stat-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem; color: var(--green); line-height: 1;
  }
  .stat-item span {
    font-size: .7rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--gray);
  }

  /* Hero sport tiles */
  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .sport-tile {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 20px 12px 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: background .22s, transform .22s, border-color .22s;
    position: relative; overflow: hidden;
  }
  .sport-tile::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    opacity: 0; transition: opacity .22s;
  }
  .sport-tile:hover { transform: translateY(-5px) scale(1.03); border-color: var(--green); }
  .sport-tile:hover::before { opacity: .12; }
  .sport-tile .emoji {
    font-size: 2.5rem; display: block;
    margin-bottom: 9px; position: relative; z-index: 1;
    transition: transform .22s;
  }
  .sport-tile:hover .emoji { transform: scale(1.18) rotate(-4deg); }
  .sport-tile .name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem; letter-spacing: .08em;
    color: var(--white); position: relative; z-index: 1;
  }
  .sport-tile .sub {
    font-size: .65rem; font-weight: 600;
    letter-spacing: .05em; text-transform: uppercase;
    color: var(--gray); margin-top: 3px;
    position: relative; z-index: 1;
  }
  .sport-tile.wide {
    grid-column: span 2;
    display: flex; align-items: center;
    gap: 18px; text-align: left; padding: 22px 22px;
  }
  .sport-tile.wide .emoji { font-size: 3.4rem; margin-bottom: 0; flex-shrink: 0; }
  .sport-tile.wide .name { font-size: 1.45rem; }

  /* WAVE */
  .wave { display: block; width: 100%; line-height: 0; background: var(--navy); }
  .wave svg { display: block; width: 100%; }

  /* SPORTEN SECTION */
  .sports-section {
    background: var(--offwhite);
    padding: 90px 28px;
  }
  .sports-inner { max-width: 1300px; margin: 0 auto; }
  .section-label {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--navy); letter-spacing: .03em;
    line-height: 1; margin-bottom: 52px;
  }
  .section-title span { color: var(--blue); }

  .sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .sport-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 260px;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  }
  .sport-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 24px 56px rgba(9,28,56,.2);
  }
  .sport-card.hockey  { background: linear-gradient(145deg, #0a3d8f 0%, #1a7cc5 100%); }
  .sport-card.korfbal { background: linear-gradient(145deg, #c85b00 0%, #f09000 100%); }
  .sport-card.racket  { background: linear-gradient(145deg, #1a6b3c 0%, #3eb870 100%); }
  .sport-card.denk    { background: linear-gradient(145deg, #1c1c3a 0%, #3a3a72 100%); }
  .sport-card.rugby   { background: linear-gradient(145deg, #7b1010 0%, #d94444 100%); }
  .sport-card.golf    { background: linear-gradient(145deg, #1b5c2a 0%, #68b54a 100%); }

  .sport-card .card-emoji {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -68%);
    font-size: 5.5rem;
    transition: transform .3s;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.3));
    text-decoration: none;
    color: white;
  }
  .sport-card:hover .card-emoji { transform: translate(-50%, -75%) scale(1.12); }

  .sport-card .card-body {
    position: relative; z-index: 2;
    padding: 22px 24px;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
    text-decoration: none;
    color: white;
  }
  .sport-card .card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: .06em;
    color: #fff; line-height: 1;
    text-decoration: none;
    color: white;
  }
  .sport-card .card-sub {
    font-size: .73rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-top: 5px;
    text-decoration: none;
    color: white;
  }
  .sport-card .card-arrow {
    position: absolute; right: 20px; bottom: 20px;
    width: 38px; height: 38px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    transition: background .2s, transform .2s;
  }
  .sport-card:hover .card-arrow { background: var(--green); color: var(--navy); transform: translateX(3px); }

  /* USP STRIP */
  .usp-strip { background: var(--navy); padding: 50px 28px; }
  .usp-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  }
  .usp-item { display: flex; align-items: center; gap: 18px; }
  .usp-icon {
    font-size: 1.8rem;
    background: rgba(120,199,0,.1);
    border: 1px solid rgba(120,199,0,.22);
    border-radius: 12px;
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .usp-text strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.02rem; letter-spacing: .06em; color: var(--white);
  }
  .usp-text span { font-size: .78rem; color: var(--gray); }

  /* CTA BANNER */
  .cta-banner {
    background: linear-gradient(105deg, var(--blue) 0%, var(--navy) 65%);
    padding: 80px 28px;
    position: relative; overflow: hidden;
  }
  .cta-banner::after {
    content: 'HUB';
    position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20rem; color: rgba(255,255,255,.04);
    pointer-events: none; white-space: nowrap; line-height: 1;
  }
  .cta-inner {
    max-width: 1300px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 32px;
    position: relative; z-index: 1;
  }
  .cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1; letter-spacing: .04em;
  }
  .cta-inner h2 span { color: var(--green); }
  .cta-inner p { font-size: .92rem; color: rgba(255,255,255,.55); margin-top: 12px; }

  /* FOOTER */
  footer { background: #060f1e; padding: 60px 28px 28px; }
  .footer-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .footer-logo img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .8; }
  .footer-logo p { font-size: .82rem; color: #4a6a8a; line-height: 1.75; }
  .footer-col h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem; letter-spacing: .1em;
    color: rgba(255,255,255,.65); margin-bottom: 18px;
  }
  .footer-col a {
    display: block; text-decoration: none;
    font-size: .82rem; color: #3a5a7a;
    margin-bottom: 10px; transition: color .18s;
    text-decoration: none ;
    color: revert;
  }
  .footer-col a:hover { color: var(--green); }
  .footer-bottom {
    max-width: 1300px; margin: 24px auto 0;
    display: flex; justify-content: space-between;
    font-size: .72rem; color: #243a54;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-left  { animation: fadeUp .75s ease both; }
  .hero-right { animation: fadeUp .75s .2s ease both; }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── PRODUCTEN PAGINA ── */
  .page-hero {
    background: linear-gradient(120deg, var(--navy) 60%, #0f2e5a 100%);
    padding: 60px 28px 50px;
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(46,134,222,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,134,222,.08) 1px, transparent 1px);
    background-size: 64px 64px;
  }
  .page-hero-inner {
    max-width: 1300px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .breadcrumb {
    font-size: .75rem; font-weight: 600;
    letter-spacing: .07em; text-transform: uppercase;
    color: var(--gray); margin-bottom: 14px;
  }
  .breadcrumb a { color: var(--gray); text-decoration: none; }
  .breadcrumb a:hover { color: var(--green); }
  .breadcrumb span { color: var(--white); }
  .page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    letter-spacing: .03em; line-height: 1;
  }
  .page-hero h1 span { color: var(--green); }
  .page-hero p {
    margin-top: 12px; font-size: .95rem;
    color: var(--gray); max-width: 500px; line-height: 1.7;
  }

  /* sport filter bar */
  .sport-filter-bar {
    background: var(--white);
    border-bottom: 1.5px solid #e3ecf7;
    padding: 0 28px;
    position: sticky; top: 72px; z-index: 100;
  }
  .sport-filter-inner {
    max-width: 1300px; margin: 0 auto;
    display: flex; gap: 4px;
    overflow-x: auto; padding: 14px 0;
    scrollbar-width: none;
    color:#0f2539;
  }
  .sport-filter-inner::-webkit-scrollbar { display: none; }
  .ftab {
    white-space: nowrap;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .95rem; letter-spacing: .07em;
    color: #5a7a9a;
    background: var(--offwhite);
    border: none; border-radius: 30px;
    padding: 7px 20px; cursor: pointer;
    transition: all .18s;
  }
  .ftab:hover { background: #dce6f5; color: var(--blue); }
  .ftab.active { background: var(--blue); color: #fff; }

  /* producten grid */
  .producten-section {
    background: var(--offwhite);
    padding: 50px 28px 80px;
  }
  .producten-inner { max-width: 1300px; margin: 0 auto; }

  .producten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
    background-color:white;
  }

  .pcard {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(9,28,56,.07);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    display: flex; flex-direction: column;
    position: relative;
  }
  .pcard:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(9,28,56,.13); }

  .pcard-img {
    width: 100%; height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e4eeff, #eaf5e0);
    display: block;
  }
  .pcard-img-placeholder {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #e4eeff, #eaf5e0);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
  }

  .pcard-sport-badge {
    position: absolute; top: 12px; left: 12px;
    font-size: .68rem; font-weight: 800;
    letter-spacing: .07em; text-transform: uppercase;
    padding: 3px 11px; border-radius: 20px;
    color: #fff;
  }
  .badge-hockey   { background: #1452a8; }
  .badge-korfbal  { background: #c85b00; }
  .badge-racket   { background: #1a6b3c; }
  .badge-denk     { background: #3a3a72; }
  .badge-rugby    { background: #7b1010; }
  .badge-golf     { background: #1b5c2a; }
  .badge-overig   { background: #444; }

  .pcard-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
  .pcard-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem; letter-spacing: .04em;
    color: var(--navy); line-height: 1.2; margin-bottom: 6px;
  }
  .pcard-desc {
    font-size: .78rem; color: var(--gray);
    line-height: 1.55; flex: 1; margin-bottom: 14px;
  }
  .pcard-footer {
    display: flex; align-items: center;
    justify-content: space-between; margin-top: auto;
  }
  .pcard-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem; color: var(--navy);
  }
  .pcard-btn {
    background: var(--navy); color: var(--white);
    border: none; border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .9rem; letter-spacing: .05em;
    cursor: pointer; transition: background .18s;
    text-decoration: none; display: inline-block;
  }
  .pcard-btn:hover { background: var(--blue); }

  /* ── PRODUCT DETAIL PAGINA ── */
  .detail-section {
    background: var(--offwhite);
    padding: 60px 28px 80px;
  }
  .detail-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
  }
  .detail-img-wrap {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(9,28,56,.12);
    background: linear-gradient(135deg, #e4eeff, #eaf5e0);
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
  }
  .detail-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .detail-img-placeholder { font-size: 8rem; }

  .detail-info { padding-top: 8px; }
  .detail-sport-badge {
    display: inline-block;
    font-size: .72rem; font-weight: 800;
    letter-spacing: .09em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 20px;
    color: #fff; margin-bottom: 16px;
  }
  .detail-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: .03em; line-height: 1;
    color: var(--navy); margin-bottom: 10px;
  }
  .detail-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem; color: var(--blue);
    margin-bottom: 22px; line-height: 1;
  }
  .detail-desc {
    font-size: .95rem; color: #4a6a8a;
    line-height: 1.75; margin-bottom: 30px;
    background: var(--white);
    border-left: 3px solid var(--green);
    padding: 16px 20px; border-radius: 0 10px 10px 0;
  }
  .detail-meta {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 30px;
  }
  .detail-meta-row {
    display: flex; gap: 10px; align-items: center;
    font-size: .85rem; color: var(--navy);
  }
  .detail-meta-row .label {
    font-weight: 700; min-width: 100px; color: var(--gray);
    font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
  }
  .detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-koop {
    background: var(--green); color: var(--navy);
    border: none; border-radius: 4px;
    padding: 14px 34px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem; letter-spacing: .1em;
    cursor: pointer; transition: transform .18s, box-shadow .18s;
  }
  .btn-koop:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(120,199,0,.35); }
  .btn-terug {
    background: transparent; color: var(--navy);
    border: 1.5px solid #c0d0e8;
    border-radius: 4px; padding: 14px 26px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: .08em;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color .18s, background .18s;
  }
  .btn-terug:hover { border-color: var(--blue); background: #f0f6ff; }

  /* loading spinner */
  .ai-loading {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--gray); font-style: italic;
  }
  .spinner {
    width: 14px; height: 14px;
    border: 2px solid #dce6f5;
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .7s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ── RESPONSIVE PRODUCT PAGES ── */
  @media(max-width:860px) {
    .detail-inner { grid-template-columns: 1fr; }
  }
  @media(max-width:600px) {
    .producten-grid { grid-template-columns: 1fr 1fr; }
  }
  @media(max-width:420px) {
    .producten-grid { grid-template-columns: 1fr; }
  }

  /* ── RESPONSIVE */
  @media(max-width:1000px) {
    .hero-content { grid-template-columns: 1fr; padding-top: 60px; }
    .hero-right { grid-template-columns: repeat(3,1fr); }
    .sport-tile.wide { grid-column: span 1; flex-direction: column; text-align: center; }
    .sport-tile.wide .emoji { margin-bottom: 8px; }
    .sports-grid { grid-template-columns: repeat(2,1fr); }
    .usp-inner { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media(max-width:600px) {
    nav { display: none; }
    .hero-right { grid-template-columns: repeat(2,1fr); }
    .sports-grid { grid-template-columns: 1fr; }
    .usp-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }
  }

  a {
    text-decoration: none;
  }

 /* Container voor dropdown */
.nav-item {
  position: relative;
}

/* Popup (dropdown) */
.dropdown {
  display: none;
  position: absolute;
  top: 100%; /* onder de link */
  left: 0;
  background-color: #444;
  padding: 10px;
  border-radius: 5px;
}

/* Links in dropdown */
.dropdown a {
  display: block;
  padding: 5px;
}

/* Hover effect */
.nav-item:hover .dropdown {
  display: block;
}

.sort-form {
  margin-left: auto; /* zet hem rechts */
}

.sort-form select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: white;
  font-size: 14px;
  cursor: pointer;
}

/* Zorg dat alles netjes naast elkaar staat */
.sport-filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vro-banner {
    background: linear-gradient(105deg, var(--blue) 0%, var(--navy) 65%);
    padding: 80px 28px;
    position: relative; overflow: hidden;
  }
 
  .vro-inner {
    max-width: 1300px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 32px;
    position: relative; z-index: 1;
  }
  .vro-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1; letter-spacing: .04em;
  }
  .vro-inner h2 span { color: var(--green); }
  .vro-inner p { font-size: .92rem; color: rgba(255,255,255,.55); margin-top: 12px; }

        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 20px;
        }
        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            color: var(--navy);
            text-decoration: none;
            font-weight: bold;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .checkout-grid { grid-template-columns: 1fr; }
        }

        /* Tabel styling */
        .order-summary {
            background: var(--light-grey);
            padding: 20px;
            border-radius: 8px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        th, td {
            text-align: left;
            padding: 12px;
            border-bottom: 1px solid var(--border);
        }

        .total-row {
            font-size: 1.2rem;
            color: var(--navy);
        }

        /* Formulier styling */
        .form-group {
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
            box-sizing: border-box; /* Zorgt dat padding de breedte niet verpest */
        }

        .info-box {
            background-color: #e7f3ff;
            border-left: 5px solid var(--navy);
            padding: 15px;
            margin: 20px 0;
        }

        .btn-submit {
            background-color: var(--success);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            width: 100%;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background-color: #218838;
        }

/* Verberg alle producten standaard */
.product-item {
  display: none;
  padding: 20px;
  background: #0f2539;
  border: 1px solid #ddd;
  margin: 10px;
  text-align: center;
}

/* Toon producten met de class 'show' */
.show {
  display: block;
}

/* Simpele styling voor de filter bar */
.sport-filter-inner {
  padding: 20px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid #333;
  background-color: var(--navy);
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover {
  background-color: #0404d1;
  border-color: #0404d1;
}

/* Kleur voor de actieve knop */
.btn.active {
  background-color: #0404d1;
  border-color:#0404d1;
}