    /* Bottom text section on coaches page */
    .coach-bottom {
      text-align: center;
      max-width: 900px;
      margin: 2rem auto 0 auto;
    }

    .coach-bottom h2,
    .coach-bottom h3 {
      text-align: center;
    }
  /* Generic cards grid spacing */
  .cards-grid {
    display: grid;
    gap: 1.5rem;
  }

  /* Ensure individual cards have breathing room if not in a grid */
  .card + .card {
    margin-top: 1.25rem;
  }
:root {
    --beige: #f5f0e6;
    --zwart: #212121;
    --accent: #c19a6b;
    --accent-dark: #a88257;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--beige);
    color: var(--zwart);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.3s ease;
    overflow-x: hidden;
  }

  html {
    overflow-x: hidden;
  }

  body.page-transition {
    opacity: 0;
  }

  * {
    box-sizing: border-box;
  }
  
  header {
    background-color: var(--zwart);
    color: var(--beige);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 1.5rem;
  }

  .header-left,
  .header-right {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .header-left {
    justify-content: flex-start;
  }

  .header-right {
    justify-content: flex-end;
    gap: 0.75rem;
  }
  
  .logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .logo-link:hover {
    transform: scale(1.05);
  }

  .logo {
    max-width: 210px;
    height: 100px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
  }

  .header-username {
    font-weight: 600;
    font-size: 0.95rem;
  }

  .login-button {
    background-color: var(--accent);
    color: var(--zwart);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .login-button:hover {
    background-color: var(--beige);
    color: var(--zwart);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }

  .login-button.logout {
    background-color: transparent;
    color: var(--beige);
    border: 1px solid var(--beige);
    box-shadow: none;
    padding-inline: 1.1rem;
  }

  .login-button.logout:hover {
    background-color: var(--beige);
    color: var(--zwart);
  }

  
  nav {
    background-color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.25rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    position: relative;
  }

   /* LRC button (upper-left of nav) */
   .nav-lrc {
     position: absolute;
     left: 0.75rem;
     top: 0.75rem;
     background-color: var(--zwart);
     color: var(--beige);
     padding: 0.35rem 0.75rem;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 700;
     font-size: 0.9rem;
     border: 1px solid var(--zwart);
   }
   .nav-lrc:hover {
     background-color: var(--beige);
     color: var(--zwart);
     border-color: var(--beige);
   }

  /* Smooth page content animation */
  body.kleding-page main,
  body.kleding-page .hero {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  nav a {
    color: var(--zwart);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--zwart);
    transition: width 0.3s ease;
  }
  
  nav a:hover {
    color: var(--white);
    background-color: var(--accent-dark);
  }

  nav a:hover::after {
    width: 80%;
  }

  nav a.active {
    background-color: var(--zwart);
    color: var(--beige);
  }

  nav a.active::after {
    width: 80%;
    background-color: var(--beige);
  }

/* Dropdown menu for teams */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.9rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  display: none;
  flex-direction: column;
  min-width: 200px;
  z-index: 150;
}

.dropdown-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--zwart);
  font-weight: 600;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: var(--accent);
  color: var(--zwart);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

  .nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 0;
    transition: margin-left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* On kleding page, place icons on a new centered row */
  body.kleding-page .nav-icons {
    flex-basis: 100%;
    justify-content: center;
  }

  .nav-icon-btn {
    background: transparent;
    border: 2px solid var(--zwart);
    color: var(--zwart);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-icon-btn:hover {
    background-color: var(--zwart);
    color: var(--beige);
    transform: translateY(-2px);
  }

  /* Unified card spacing utility */
  .card-spaced {
    margin-top: 1.5rem;
  }

  .badge {
    background-color: var(--zwart);
    color: var(--beige);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
  }

  .nav-icon-btn:hover .badge {
    background-color: var(--accent);
    color: var(--zwart);
  }

  header.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    padding: 1rem 2rem;
  }

  header.scrolled .logo-link {
    max-width: 180px;
  }

  header.scrolled .logo {
    max-width: 180px;
    height: 80px;
  }
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex: 1;
  }

  section {
    animation: fadeInUp 0.6s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .page-kleding main {
    max-width: 1200px;
    padding: 3rem 2rem;
    text-align: center;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zwart);
    letter-spacing: -0.5px;
  }

  h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--zwart);
    margin-bottom: 1rem;
  }
  
  .intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--zwart);
    justify-content: center;
    text-justify: center;
  }

  /* INTRO BALK STYLING */
  .intro-balk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    padding: 4rem 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .intro-balk:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-dark);
  }

  .intro-tekst {
    padding: 1rem;
  }

  .intro-tekst h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--zwart) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .intro-tekst p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--zwart);
    margin: 0;
  }

  .intro-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-dark);
    transition: transform 0.3s ease;
  }

  .intro-video:hover {
    transform: scale(1.02);
  }

  .intro-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background-color: var(--zwart);
    pointer-events: none;
  }

  /* Hide video controls completely */
  .intro-video video::-webkit-media-controls {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-enclosure {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-panel {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-play-button {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-timeline {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-current-time-display {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-time-remaining-display {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-mute-button {
    display: none !important;
  }

  .intro-video video::-webkit-media-controls-volume-slider {
    display: none !important;
  }

  /* TEAMS BALK STYLING */
  .teams-balk {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 4rem 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--shadow-dark);
    transition: transform 0.3s ease;
  }

  .teams-balk:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .teams-tekst {
    color: var(--white);
  }

  .teams-tekst h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .teams-tekst p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
  }

  .teams-knop {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .button {
    background-color: var(--zwart);
    color: var(--beige);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-block;
    border: 2px solid var(--zwart);
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .button:hover {
    background-color: var(--white);
    color: var(--zwart);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  /* Ripple effect for buttons */
  .button, .btn {
    position: relative;
    overflow: hidden;
  }

  .ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
  }

  @keyframes ripple-animation {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* Video playing state */
  .intro-video.video-playing {
    box-shadow: 0 8px 24px rgba(193, 154, 107, 0.4);
  }

  .intro-video.video-playing video {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }
  
  #contact,
  #contact-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 24px var(--shadow);
    color: var(--zwart);
  }

  #contact-section h1 {
    text-align: center;
    margin-bottom: 1rem;
  }

  #contact-section .intro {
    text-align: center;
    margin-bottom: 3rem;
  }

  .practical-info {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 12px var(--shadow);
  }

  .practical-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--zwart);
  }

  .info-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--beige);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--shadow);
  }

  .info-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--zwart);
    margin-bottom: 0.5rem;
  }

  .info-item p {
    margin: 0.5rem 0 0 0;
    color: var(--zwart);
    line-height: 1.6;
  }

  .info-item.highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-left-color: var(--zwart);
  }

  .info-item.highlight strong,
  .info-item.highlight p {
    color: var(--white);
  }

/* FAQ accordion */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
  border-left: 4px solid var(--accent);
}

.faq-question {
  margin: 0;
}

.faq-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zwart);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding-bottom 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1rem;
}

.faq-answer p {
  margin: 0.75rem 0 0;
}

.faq-image-container {
  max-width: 900px;
  margin: 3rem auto 2rem;
  text-align: center;
}

.faq-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--shadow-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.faq-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-dark);
}

@media (max-width: 600px) {
  .faq-toggle {
    font-size: 1rem;
  }
  
  .faq-image-container {
    margin: 1.5rem auto 2rem;
  }
  
  .faq-image {
    border-radius: 12px;
  }
}

  /* Over-ons onderkant centreren */
  .club-info {
    text-align: center;
  }

  /* Club story section */
  .club-verhaal {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow);
    text-align: left;
  }

  .club-verhaal h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--zwart);
  }

  .club-verhaal p {
    margin: 0.75rem 0;
    line-height: 1.8;
    color: var(--zwart);
  }

  /* Highlighted callout inside club story */
  .club-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-dark);
    margin: 1rem auto;
    max-width: 1000px;
  }

  .club-highlight strong,
  .club-highlight h3,
  .club-highlight p {
    color: var(--white);
    margin: 0.25rem 0;
  }

  .club-highlight h2 {
    text-align: center;
    margin-top: 0;
  }

  .club-highlight ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.75rem 0 0 0;
    text-align: left;
  }

  /* Coach photo inside cards */
  .coach-photo {
    width: 320px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    margin-bottom: 0.75rem;
    display: block;
    max-width: 100%;
  }

  /* Side-by-side layout for hoofdcoach card */
  .coach-horizontal {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }

  .coach-horizontal .coach-photo {
    margin: 0;
    justify-self: end;
  }

  .coach-horizontal .coach-info h2 {
    margin-top: 0;
  }

  /* Box around coach content + image */
  .coach-card {
    background: var(--white);
    border: 1px solid rgba(33,33,33,0.1);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
    padding: 1.25rem 1.5rem;
  }

  @media (max-width: 768px) {
    .coach-horizontal {
      grid-template-columns: 1fr;
    }
    .coach-horizontal .coach-photo {
      justify-self: center;
      margin-top: 0.5rem;
    }
  }

  /* Youth teams grid and cards */
  .youth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    column-gap: 0.05rem;
    row-gap: 1.25rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-inline: auto;
    justify-items: center;
  }

  .youth-card {
    width: 320px;
    background: var(--white);
    border: 1px solid rgba(33,33,33,0.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 1rem;
  }

  .youth-title {
    margin-top: 2rem;
    text-align: center;
  }

  /* Youth team hero image */
  .youth-image {
    width: auto;
    height: auto;
    max-width: 1000px;
    display: block;
    margin: 1.25rem auto 0 auto;
    border-radius: 12px;
    justify-self: center;
  }

  /* Login pagina CTA onder het formulier */
  .account-create-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  .account-create-cta h2 {
    margin-bottom: 0.75rem;
  }

  .account-create-cta p {
    margin-bottom: 1.25rem;
  }
  
  .container {
    text-align: center;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form label {
    font-weight: 600;
  }
  
  .contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px var(--shadow);
  }

  .contact-form input,
  .contact-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    background-color: var(--white);
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--beige);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
  }
  
  .contact-form button {
    background: linear-gradient(135deg, var(--zwart) 0%, #333 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
  }
  
  .contact-form button:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--zwart);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  .contact-info {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 2rem 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow-dark);
    color: var(--white);
    transition: transform 0.3s ease;
  }

  .contact-info-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }

  .contact-info-text {
    text-align: left;
  }

  .contact-info-image {
    flex-shrink: 0;
  }

  .lid-worden-image {
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }

  /* Size select inline error and disabled cart button */
  .size-error {
    color: #b00020;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    font-weight: 600;
  }

  /* Flash animation for inline size error */
  @keyframes error-flash {
    0% { transform: translateY(0); opacity: 0; }
    10% { transform: translateY(-6px) scale(1.02); opacity: 1; }
    40% { transform: translateY(3px) scale(0.995); }
    70% { transform: translateY(-1px) scale(1.005); }
    100% { transform: translateY(0); opacity: 1; }
  }

  .size-error.flash {
    animation: error-flash 600ms cubic-bezier(.2,.8,.2,1);
  }

  .product .cart-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(20%);
  }

  .contact-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  .contact-info h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--white);
  }

  .contact-info p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .contact-info a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .contact-info a:hover {
    color: var(--beige);
  }
  
  .hero {
    background: linear-gradient(135deg, var(--zwart) 0%, var(--accent-dark) 100%);
    text-align: center;
    color: var(--white);
    padding: 6rem 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--shadow-dark);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--beige);
    position: relative;
    z-index: 1;
  }
  
  .btn {
    background-color: var(--white);
    color: var(--zwart);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .btn:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 1rem 0;
  }
  
  .product {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow);
    overflow: hidden;
    position: relative;
  }

  .favorite-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .favorite-btn:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
  }

  .favorite-btn.active {
    background: rgba(255, 255, 255, 1);
    animation: heartBeat 0.5s ease;
  }

  @keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
  }

  .product-actions {
    margin-top: 1rem;
  }

  .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .product:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px var(--shadow-dark);
    border-color: var(--accent);
  }

  .product:hover::before {
    transform: scaleX(1);
  }
  
  .product img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }

  .product:hover img {
    transform: scale(1.05);
  }
  
  .product h3 {
    margin: 1rem 0 0.5rem;
    color: var(--zwart);
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .product p.price {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
    margin: 1rem 0;
  }

  .product p {
    color: #666;
    font-weight: normal;
  }
  
  .product button.cart-btn {
    background-color: var(--zwart);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }
  
  .product button.cart-btn:hover {
    background-color: var(--accent);
    color: var(--zwart);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .teams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.1rem;
  }
  
  .team-card {
    background: linear-gradient(135deg, var(--zwart) 0%, #333 100%);
    color: var(--beige);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }
  
  .team-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  }

  .team-card h3 {
    color: var(--beige);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }

  .team-card p {
    color: var(--beige);
    opacity: 0.9;
    margin: 0;
  }
  
  .info-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--zwart);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: default;
    text-align: center;
  }
  
  .info-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  }

  .info-card h3 {
    color: var(--zwart);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }

  .info-card p {
    color: var(--zwart);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .team-details {
    margin-top: 4rem;
  }

  .team-info {
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent);
  }

  .team-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-dark);
  }

  .team-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--zwart);
  }

  .team-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--zwart);
  }

  .team-info strong {
    color: var(--accent-dark);
    font-weight: 700;
  }
  
  /* Make footer full-bleed while keeping inner content centered */
  footer {
    background-color: var(--zwart);
    color: var(--beige);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 6rem;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.1);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    left: 0;
    z-index: 10;
  }

  /* helper: if there is an inner wrapper, keep it constrained and centered */
  footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  footer p {
    margin: 0;
  }

  /* SMOOTH SCROLLING */
  html {
    scroll-behavior: smooth;
  }

  /* ========== MODAL STYLES ========== */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .modal-content {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .modal.active .modal-content {
    transform: scale(1);
  }

  .modal-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--zwart) 0%, #333 100%);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-header h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.75rem;
  }

  .close-modal {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close-modal:hover {
    transform: rotate(90deg);
  }

  .modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
  }

  .modal-footer {
    padding: 1.5rem 2rem;
    background-color: var(--beige);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid var(--shadow);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--zwart);
    border: 2px solid var(--zwart);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background-color: var(--zwart);
    color: var(--white);
  }

  /* ========== CART ITEMS ========== */
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--beige);
    border-radius: 15px;
    transition: transform 0.2s ease;
  }

  .cart-item:hover {
    transform: translateX(5px);
  }

  .cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--zwart);
    font-size: 1.2rem;
  }

  .cart-item-price {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
  }

  .cart-item-price .item-total {
    color: var(--zwart);
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.25rem;
  }

  .cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .quantity-btn {
    background-color: var(--zwart);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quantity-btn:hover {
    background-color: var(--accent);
    color: var(--zwart);
    transform: scale(1.1);
  }

  .quantity {
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
  }

  .remove-btn {
    background-color: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0.5rem;
  }

  .remove-btn:hover {
    transform: scale(1.2) rotate(15deg);
  }

  .cart-total {
    padding: 1.5rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    color: var(--white);
  }

  .cart-total strong {
    color: var(--white);
  }

  /* ========== FAVORITES ITEMS ========== */
  .favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--beige);
    border-radius: 15px;
    transition: transform 0.2s ease;
  }

  .favorite-item:hover {
    transform: translateX(5px);
  }

  .favorite-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--zwart);
    font-size: 1.2rem;
  }

  .favorite-item-price {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
  }

  .favorite-item-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .cart-btn-small {
    background-color: var(--zwart);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .cart-btn-small:hover {
    background-color: var(--accent);
    color: var(--zwart);
    transform: translateY(-2px);
  }

  /* ========== EMPTY MESSAGES ========== */
  .empty-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--zwart);
    font-size: 1.2rem;
    opacity: 0.7;
  }

  /* ========== NOTIFICATIONS ========== */
  .notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--zwart) 0%, #333 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    max-width: 300px;
  }

  .notification.show {
    transform: translateY(0);
    opacity: 1;
  }

  .notification-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  }

  .notification-info {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 968px) {
    .contact-info-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .contact-info-text {
      text-align: center;
    }

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

    .lid-worden-image {
      width: 180px;
    }

    .intro-balk {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem 2rem;
    }

    .intro-tekst h1 {
      font-size: 2.25rem;
    }

    .teams-balk {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem 2rem;
      text-align: center;
    }

    .teams-tekst h2 {
      font-size: 2rem;
    }

    .hero h2 {
      font-size: 2.25rem;
    }

    nav {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }

    h2 {
      font-size: 1.75rem;
    }

    .intro-balk {
      padding: 2rem 1.5rem;
      margin: 2rem 0;
    }

    .teams-balk {
      padding: 2rem 1.5rem;
      margin: 2rem 0;
    }

    .hero {
      padding: 4rem 2rem;
      margin: 2rem 0;
    }

    .hero h2 {
      font-size: 1.75rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .button, .btn {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }

    nav {
      gap: 1rem;
      padding: 1rem;
    }

    nav a {
      font-size: 1rem;
      padding: 0.5rem 0.75rem;
    }
  }
  
  @media (max-width: 500px) {
    header {
      font-size: 1.5rem;
      padding: 1rem;
    }

    .logo {
      max-width: 180px;
      height: auto;
    }
  
    nav {
      flex-direction: column;
      gap: 0.75rem;
      padding: 1rem;
    }

    nav a {
      width: 100%;
      text-align: center;
    }

    .nav-icons {
      width: 100%;
      justify-content: center;
      margin-left: 0;
      margin-top: 1rem;
    }

    main {
      padding: 0 0.75rem;
    }

    .intro-balk {
      padding: 1.5rem 1rem;
      border-radius: 15px;
    }

    .intro-tekst h1 {
      font-size: 1.75rem;
    }

    .intro-tekst p {
      font-size: 1rem;
    }

    .teams-balk {
      padding: 1.5rem 1rem;
      border-radius: 15px;
    }

    .teams-tekst h2 {
      font-size: 1.5rem;
    }

    .teams-tekst p {
      font-size: 1rem;
    }

    .hero {
      padding: 3rem 1.5rem;
      border-radius: 15px;
    }

    .hero h2 {
      font-size: 1.5rem;
    }

    .hero p {
      font-size: 1rem;
    }
  
    .contact-form {
      padding: 0 1rem;
    }
  
    .contact-info {
      padding: 1rem;
    }

    .contact-info-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      text-align: center;
    }

    .contact-info-text {
      text-align: center;
    }

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

    .lid-worden-image {
      width: 180px;
    }

    .practical-info {
      padding: 1.5rem;
    }

    .map-container {
      margin: 2rem auto;
      padding: 0 0.75rem;
    }

    .google-map iframe {
      height: 350px;
    }

    .info-item {
      padding: 1rem;
    }

    .team-info {
      padding: 1.5rem;
    }

    .team-details {
      margin-top: 2rem;
    }

    .product-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    #contact-section {
      padding: 2rem 1rem;
    }

    .modal-content {
      width: 95%;
      max-height: 90vh;
    }

    .modal-header {
      padding: 1rem 1.5rem;
    }

    .modal-header h2 {
      font-size: 1.5rem;
    }

    .modal-body {
      padding: 1.5rem;
    }

    .modal-footer {
      padding: 1rem 1.5rem;
      flex-direction: column;
    }

    .cart-item,
    .favorite-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .cart-item-controls,
    .favorite-item-actions {
      width: 100%;
      justify-content: space-between;
    }

    .notification {
      bottom: 1rem;
      right: 1rem;
      left: 1rem;
      max-width: none;
      font-size: 0.9rem;
      padding: 0.875rem 1.5rem;
    }
  }
  