﻿:root {
    --navy: #101010;       /* De Snelbinder merkblauw */
    --orange: #d2141c;     /* Geel accent â€” fris & Nederlands */
    --orange-light: #ff4b57;
    --cream: #f2f2f2;      /* Lichtblauw-wit voor tekst */
    --white: #ffffff;
    --gold: #101010;
    --dark: #0a0a0a;       /* Diep blauw voor secties */
    --gray: #9a9a9a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

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

  body.menu-open {
    overflow: hidden;
  }

  /* â”€â”€â”€ NOISE OVERLAY â”€â”€â”€ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
  }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(210,20,28,0.15);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .nav-logo span { color: var(--orange); }

  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: rgba(242,242,242,0.75);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
  }

  .nav-links a:hover { color: var(--cream); }
  .nav-links a:hover::after { width: 100%; }

  .has-submenu {
    position: relative;
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(242,242,242,0.75);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
    border: 0;
    background: transparent;
    font-family: inherit;
    padding: 0;
  }

  .submenu-toggle:hover { color: var(--cream); }

  .submenu-toggle::after {
    content: '+';
    font-size: 0.95rem;
    line-height: 1;
    color: var(--orange-light);
  }

  .has-submenu.submenu-open > .submenu-toggle::after {
    content: '-';
  }

  .submenu {
    list-style: none;
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(210,20,28,0.35);
    background: rgba(10,10,10,0.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 998;
  }

  .has-submenu:hover > .submenu,
  .has-submenu.submenu-open > .submenu {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .submenu a {
    display: block;
    width: 100%;
    font-size: 0.76rem;
    letter-spacing: 1px;
    padding: 0.45rem 0;
    white-space: nowrap;
  }

  .accent-italic {
    color: var(--orange);
    font-style: italic;
  }

  .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.4rem 1.2rem;
    border: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

  .nav-icon-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .nav-icon-link {
    display: inline-flex;
    align-items: center;
  }

  .nav-icon-svg {
    vertical-align: middle;
  }

  .admin-form-hidden {
    display: none;
  }

  .admin-textarea-wide {
    width: 100%;
  }

  .admin-shell {
    min-height: 100vh;
    background:
      radial-gradient(circle at 12% 8%, rgba(210,20,28,0.16) 0%, transparent 40%),
      radial-gradient(circle at 92% 12%, rgba(255,75,87,0.11) 0%, transparent 42%),
      #0d0d0d;
  }

  .admin-app {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    padding: 6.6rem 1rem 1rem;
    min-height: 100vh;
  }

  .admin-sidebar {
    background: rgba(16,16,16,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    gap: 0.55rem;
    align-content: start;
    position: sticky;
    top: 6.6rem;
    height: fit-content;
  }

  .admin-sidebar h1 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
  }

  .admin-tab {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9px;
    background: rgba(255,255,255,0.02);
    color: var(--cream);
    text-align: left;
    font-size: 0.9rem;
    padding: 0.68rem 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .admin-tab:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
  }

  .admin-tab.active {
    border-color: rgba(210,20,28,0.62);
    background: rgba(210,20,28,0.14);
    color: #fff;
  }

  .admin-content {
    background: rgba(16,16,16,0.94);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem;
  }

  .admin-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
  }

  .admin-header h2 {
    margin: 0;
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
  }

  #adminStatus {
    color: rgba(242,242,242,0.7);
    font-size: 0.86rem;
  }

  .admin-panel {
    display: none;
    gap: 0.9rem;
  }

  .admin-panel.active {
    display: grid;
  }

  .admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 0.8rem;
  }

  .stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    padding: 0.9rem;
  }

  .stat-card h3 {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(242,242,242,0.78);
    font-weight: 500;
  }

  .stat-card p {
    margin: 0.45rem 0 0;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
  }

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

  .admin-filters {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.6rem;
  }

  .admin-bulk-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .admin-bulk-actions .check-row {
    margin-right: 0.35rem;
  }

  .admin-filters input,
  .admin-filters select,
  .order-status-select,
  #productCategory,
  #productImageUrl,
  #productImageFile,
  #categoryName,
  #categorySlug {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    color: var(--cream);
    padding: 0.52rem 0.62rem;
  }

  .admin-category-box {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.8rem;
    background: rgba(255,255,255,0.02);
    display: grid;
    gap: 0.65rem;
  }

  .admin-category-box h4 {
    margin: 0;
    font-size: 0.95rem;
  }

  .admin-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
  }

  .admin-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
  }

  .admin-list small {
    color: rgba(242,242,242,0.6);
    margin-left: 0.4rem;
  }

  .admin-thumb {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 7px;
    object-fit: cover;
    margin-top: 0.42rem;
    border: 1px solid rgba(255,255,255,0.12);
  }

  .admin-image-preview {
    width: min(220px, 100%);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
  }

  .panel-head h3,
  .admin-panel h3 {
    margin: 0;
    font-size: 1.05rem;
  }

  #addProductBtn,
  #saveContentBtn,
  .form-actions button,
  .row-btn {
    border: 1px solid rgba(210,20,28,0.5);
    border-radius: 8px;
    background: rgba(210,20,28,0.14);
    color: #fff;
    padding: 0.48rem 0.72rem;
    cursor: pointer;
  }

  #addProductBtn:hover,
  #saveContentBtn:hover,
  .form-actions button:hover,
  .row-btn:hover {
    background: rgba(210,20,28,0.24);
  }

  .row-btn {
    font-size: 0.78rem;
    padding: 0.36rem 0.52rem;
  }

  .row-btn-danger {
    border-color: rgba(255,100,110,0.55);
    background: rgba(255,100,110,0.16);
  }

  .admin-form {
    display: grid;
    gap: 0.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    padding: 0.8rem;
  }

  .admin-form label {
    font-size: 0.84rem;
    color: rgba(242,242,242,0.84);
  }

  .admin-form input,
  .admin-textarea-wide {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    color: var(--cream);
    padding: 0.58rem 0.64rem;
  }

  .check-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .form-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .admin-table-wrap {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: auto;
    background: rgba(255,255,255,0.02);
  }

  .admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
  }

  .admin-table th,
  .admin-table td {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.65rem 0.72rem;
    text-align: left;
    font-size: 0.86rem;
  }

  .admin-table th {
    color: rgba(242,242,242,0.7);
    font-weight: 500;
    letter-spacing: 0.4px;
  }

  .admin-table tr:last-child td {
    border-bottom: 0;
  }

  .admin-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.84rem;
    color: rgba(242,242,242,0.78);
  }

  .admin-pagination .row-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .admin-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  @media (max-width: 980px) {
    .admin-app {
      grid-template-columns: 1fr;
      padding-top: 6.2rem;
    }

    .admin-sidebar {
      position: static;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      overflow: visible;
    }

    .admin-sidebar h1 {
      grid-column: 1 / -1;
    }

    .admin-stats {
      grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .admin-filters {
      grid-template-columns: 1fr;
    }

    .admin-pagination {
      justify-content: flex-start;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 620px) {
    .admin-content {
      padding: 0.75rem;
    }

    .admin-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .admin-sidebar {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-stats {
      grid-template-columns: 1fr;
    }

    .panel-head {
      flex-direction: column;
      align-items: stretch;
    }

    .admin-list li {
      flex-direction: column;
      align-items: flex-start;
    }

    .form-actions {
      flex-direction: column;
    }

    .form-actions button {
      width: 100%;
      text-align: center;
    }

    .cart-item {
      grid-template-columns: 1fr;
    }

    .checkout-actions {
      flex-direction: column;
    }

    .cart-btn {
      width: 100%;
      text-align: center;
    }

    footer {
      padding: 2.2rem 1rem;
    }

    .hero-h1 {
      font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .hero-sub,
    .prijzen-intro p,
    .about-text p,
    .fietsen-intro p,
    .contact-block p,
    .contact-block a {
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .contact-map {
      min-height: 300px;
    }

    .qr-image {
      width: min(100%, 220px);
      height: auto;
      aspect-ratio: 1;
    }
  }

  .nav-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: rgba(10,10,10,0.28);
    border: 1px solid rgba(255,255,255,0.28);
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 700;
    padding: 0 0.3rem;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: 0;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
  }

  .auth-page {
    min-height: 100vh;
  }

  .auth-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 7.5rem 1rem 2rem;
  }

  .auth-card {
    width: min(560px, 100%);
    background: rgba(16,16,16,0.92);
    border: 1px solid rgba(210,20,28,0.28);
    border-radius: 8px;
    padding: 1.6rem;
  }

  .auth-kicker {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 0.6rem;
  }

  .auth-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 0.6rem;
  }

  .auth-intro {
    color: rgba(242,242,242,0.78);
    margin-bottom: 1.2rem;
  }

  .auth-form {
    display: grid;
    gap: 0.6rem;
  }

  .auth-form label {
    font-size: 0.9rem;
    color: rgba(242,242,242,0.92);
  }

  .auth-form input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(10,10,10,0.75);
    color: var(--cream);
    border-radius: 6px;
    padding: 0.68rem 0.72rem;
  }

  .auth-form input:focus {
    outline: 2px solid rgba(210,20,28,0.55);
    border-color: rgba(210,20,28,0.55);
  }

  .auth-form button {
    margin-top: 0.4rem;
    border: 0;
    border-radius: 6px;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    padding: 0.7rem 0.85rem;
    cursor: pointer;
  }

  .auth-form button:hover {
    background: var(--orange-light);
  }

  .error-message {
    min-height: 1.2rem;
    color: #ff8d96;
    font-size: 0.9rem;
  }

  .auth-switch {
    margin-top: 0.9rem;
    color: rgba(242,242,242,0.82);
  }

  .auth-switch a {
    color: var(--orange-light);
    text-decoration: none;
  }

  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 3rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(210,20,28,0.10) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(210,20,28,0.10) 0%, transparent 60%),
      var(--dark);
  }

  /* Animated grid lines */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(210,20,28,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(210,20,28,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridScroll 20s linear infinite;
  }

  @keyframes gridScroll {
    from { transform: translateY(0); }
    to { transform: translateY(80px); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(210,20,28,0.15);
    border: 1px solid rgba(210,20,28,0.4);
    color: var(--orange-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
  }

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

  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--orange);
    display: block;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(242,242,242,0.7);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(210,20,28,0.4); }

  .btn-outline {
    display: inline-block;
    border: 2px solid rgba(242,242,242,0.3);
    color: var(--cream);
    padding: 0.9rem 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .btn-outline:hover {
    border-color: var(--cream);
    background: rgba(242,242,242,0.05);
  }

  /* Animated bike SVG */
  .hero-bike {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    opacity: 0;
    animation: bikeReveal 1.2s ease 0.5s forwards;
  }

  .bike-visual {
    width: 100%;
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 35px rgba(210,20,28,0.18));
    animation: bikeFloat 5.5s ease-in-out 1.3s infinite;
  }

  .wheel-front-spin {
    transform-origin: 73.75% 66.07%;
    animation: spin 5s linear infinite;
  }

  .wheel-back-spin {
    transform-origin: 27.5% 66.07%;
    animation: spin 5s linear infinite;
  }

  @keyframes bikeReveal {
    from { opacity: 0; transform: translateY(-50%) translateX(60px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
  }

  @keyframes bikeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(242,242,242,0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s forwards;
    opacity: 0;
    z-index: 2;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollAnim 2s ease infinite;
  }

  @keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* â”€â”€â”€ STATS BAR â”€â”€â”€ */
  .stats-bar {
    background: var(--orange);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  .stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.05) 0,
      rgba(255,255,255,0.05) 10px,
      transparent 10px,
      transparent 20px
    );
  }

  .stat {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-top: 0.2rem;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* â”€â”€â”€ SECTIONS â”€â”€â”€ */
  section {
    padding: 7rem 3rem;
    position: relative;
  }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  /* â”€â”€â”€ ABOUT â”€â”€â”€ */
  #about { background: var(--dark); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
    aspect-ratio: 1;
  }

  .about-circle {
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210,20,28,0.2), rgba(210,20,28,0.05));
    border: 2px dashed rgba(210,20,28,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateDash 30s linear infinite;
  }

  @keyframes rotateDash {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .about-inner-circle {
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(210,20,28,0.3), rgba(0,0,0,0.85));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .about-icon-big {
    font-size: 6rem;
    filter: drop-shadow(0 0 30px rgba(210,20,28,0.6));
  }

  .about-year-tag {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(210,20,28,0.4);
  }

  .about-year-tag span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .about-text p {
    color: rgba(242,242,242,0.7);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    font-weight: 300;
  }

  .about-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(210,20,28,0.15);
    border: 1.5px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .feature-item p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    color: rgba(242,242,242,0.8) !important;
  }

  .feature-item strong { color: var(--cream); font-weight: 600; }

  /* â”€â”€â”€ DIENSTEN â”€â”€â”€ */
  #diensten { background: var(--navy); }

  .diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }

  .diensten-grid-offset {
    margin-top: 3rem;
  }

  .diensten-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
  }

  .dienst-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(210,20,28,0.1);
    padding: 2.5rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
  }

  .dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.35s ease;
  }

  .dienst-card:hover {
    background: rgba(210,20,28,0.06);
    transform: translateY(-4px);
    border-color: rgba(210,20,28,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .dienst-card:hover::before { transform: scaleX(1); }

  .dienst-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .dienst-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .dienst-card p {
    font-size: 0.9rem;
    color: rgba(242,242,242,0.6);
    line-height: 1.7;
    font-weight: 300;
  }

  /* â”€â”€â”€ PRIJZEN â”€â”€â”€ */
  #prijzen {
    background: var(--dark);
  }

  .prijzen-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
  }

  .prijzen-intro p {
    color: rgba(242,242,242,0.65);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .prijzen-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .prijs-cat {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(210,20,28,0.12);
    padding: 2rem;
    border-radius: 2px;
    transition: border-color 0.3s;
  }

  .prijs-cat:hover { border-color: rgba(210,20,28,0.35); }

  .prijs-cat h3 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(210,20,28,0.2);
  }

  .prijs-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 1rem;
  }

  .prijs-row:last-child { border-bottom: none; }

  .prijs-label {
    font-size: 0.85rem;
    color: rgba(242,242,242,0.72);
    flex: 1;
    line-height: 1.4;
  }

  .prijs-amount {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
    white-space: nowrap;
  }

  .prijs-amount.highlight { color: var(--orange); }

  /* Cleaner reading layout for secondhand information page */
  .secondhand-page .section-inner {
    max-width: 1000px;
  }

  .secondhand-page .section-title,
  .secondhand-page .bikes-intro {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .secondhand-page .bikes-intro {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(242,242,242,0.78);
    margin-top: 1rem;
    margin-bottom: 2.2rem;
  }

  .secondhand-content {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
    gap: 1rem;
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto 1rem;
  }

  .shop-card {
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 1.1rem;
  }

  .shop-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--cream);
  }

  .shop-card p {
    font-size: 0.88rem;
    color: rgba(242,242,242,0.75);
    line-height: 1.55;
    margin-bottom: 0.7rem;
  }

  .shop-price {
    display: block;
    color: var(--orange-light);
    font-weight: 700;
    margin-bottom: 0.7rem;
  }

  .shop-card .btn-small {
    display: inline-block;
    padding: 0.45rem 0.7rem;
    border-radius: 3px;
    border: 1px solid rgba(210,20,28,0.35);
    text-decoration: none;
    color: var(--cream);
    background: rgba(210,20,28,0.15);
    font-size: 0.78rem;
    letter-spacing: 0.7px;
  }

  .shop-card .btn-small:hover {
    background: rgba(210,20,28,0.24);
  }

  .cart-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
  }

  .cart-panel,
  .checkout-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
    padding: 1.2rem;
  }

  .cart-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 0.8rem;
    background: rgba(255,255,255,0.01);
  }

  .cart-item h4 {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
  }

  .cart-item p {
    font-size: 0.84rem;
    color: rgba(242,242,242,0.72);
  }

  .qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .qty-btn {
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--cream);
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 4px;
    cursor: pointer;
  }

  .qty-value {
    min-width: 1.1rem;
    text-align: center;
    font-weight: 600;
  }

  .cart-total {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
  }

  .checkout-panel h3 {
    margin-bottom: 0.8rem;
    color: var(--orange-light);
  }

  .checkout-panel label {
    display: block;
    font-size: 0.8rem;
    color: rgba(242,242,242,0.75);
    margin-bottom: 0.25rem;
  }

  .checkout-panel input,
  .checkout-panel textarea {
    width: 100%;
    margin-bottom: 0.7rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--cream);
    border-radius: 5px;
    padding: 0.55rem 0.65rem;
    font-family: inherit;
  }

  .checkout-actions {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.4rem;
    flex-wrap: wrap;
  }

  .cart-btn {
    text-decoration: none;
    border: 1px solid rgba(210,20,28,0.35);
    background: rgba(210,20,28,0.16);
    color: var(--cream);
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    cursor: pointer;
  }

  .cart-btn:hover {
    background: rgba(210,20,28,0.25);
  }

  .cart-empty {
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 1rem;
    color: rgba(242,242,242,0.72);
  }

  .secondhand-content .prijs-cat {
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 1.5rem 1.6rem;
  }

  .secondhand-content .prijs-cat:hover {
    border-color: rgba(210,20,28,0.18);
    background: rgba(255,255,255,0.022);
  }

  .secondhand-content .prijs-cat h3 {
    font-family: 'Playfair Display', serif;
    text-transform: none;
    letter-spacing: 0.2px;
    font-size: 1.2rem;
    color: var(--orange-light);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.9rem;
    padding-bottom: 0.7rem;
  }

  .secondhand-content .prijs-cat p,
  .secondhand-content .prijs-cat li {
    color: rgba(242,242,242,0.8);
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .secondhand-content .prijs-cat p {
    margin-bottom: 0.75rem;
  }

  .secondhand-content .prijs-cat ul {
    margin: 0.25rem 0 0.8rem 1.2rem;
  }

  .secondhand-content .prijs-cat li {
    margin-bottom: 0.45rem;
  }

  .secondhand-content .prijs-cat ul li::marker {
    color: rgba(255, 75, 87, 0.95);
  }

  .secondhand-content .prijs-cat strong {
    color: rgba(255, 75, 87, 0.95);
    font-weight: 600;
  }

  .secondhand-content .prijs-cat a {
    color: rgba(255, 75, 87, 0.95);
    text-decoration-color: rgba(255, 75, 87, 0.55);
    text-underline-offset: 2px;
  }

  .secondhand-content .prijs-cat a:hover {
    color: #ff6f78;
    text-decoration-color: rgba(255, 111, 120, 0.75);
  }

  .secondhand-page .section-label {
    color: rgba(255, 75, 87, 0.82);
  }

  .secondhand-page .btn-small {
    background: rgba(210,20,28,0.14);
    border: 1px solid rgba(210,20,28,0.3);
    color: var(--cream);
  }

  .secondhand-page .btn-small:hover {
    background: rgba(210,20,28,0.22);
    border-color: rgba(210,20,28,0.45);
  }

  /* â”€â”€â”€ FIETSEN â”€â”€â”€ */
  #fietsen { background: var(--navy); }

  .fietsen-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .fietsen-intro p {
    color: rgba(242,242,242,0.65);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.05rem;
  }

  .garantie-badge {
    background: linear-gradient(135deg, rgba(210,20,28,0.2), rgba(210,20,28,0.05));
    border: 1px solid rgba(210,20,28,0.4);
    padding: 2rem;
    border-radius: 2px;
  }

  .garantie-badge .big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: var(--orange);
    line-height: 1;
    display: block;
  }

  .garantie-badge p {
    font-size: 0.85rem;
    color: rgba(242,242,242,0.8);
    margin-top: 0.5rem;
    line-height: 1.5;
  }

  .bikes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .bike-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    border-radius: 2px;
  }

  .bike-card:hover {
    border-color: rgba(210,20,28,0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .checkout-status {
    margin-top: 0.8rem;
    font-size: 0.92rem;
    min-height: 1.2rem;
    color: rgba(242,242,242,0.78);
  }
  
  .checkout-status.is-error {
    color: #ff8d96;
  }
  
  .checkout-status.is-success {
    color: #9ce8aa;
  }

  .bike-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, rgba(210,20,28,0.1), rgba(0,0,0,0.55));
    position: relative;
    overflow: hidden;
  }

  .bike-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.82));
  }

  .bike-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    z-index: 1;
  }

  .bike-info {
    padding: 1.5rem;
  }

  .bike-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  .bike-info .bike-desc {
    font-size: 0.85rem;
    color: rgba(242,242,242,0.55);
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .bike-price-range {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: 1px;
  }

  .bike-checkmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }

  .check-pill {
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
    background: rgba(210,20,28,0.1);
    border: 1px solid rgba(210,20,28,0.2);
    border-radius: 20px;
    color: var(--orange-light);
    font-weight: 500;
  }

  /* â”€â”€â”€ MERKEN â”€â”€â”€ */
  #merken {
    background: var(--dark);
    padding: 4rem 3rem;
  }

  .merken-inner { max-width: 1200px; margin: 0 auto; }

  .merken-title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(242,242,242,0.4);
    margin-bottom: 2.5rem;
  }

  .merken-scroll {
    overflow: hidden;
    position: relative;
  }

  .merken-scroll::before,
  .merken-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
  }

  .merken-scroll::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
  .merken-scroll::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

  .merken-track {
    display: flex;
    gap: 4rem;
    animation: ticker 20s linear infinite;
    width: max-content;
  }

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

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

  .merk {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: rgba(242,242,242,0.25);
    white-space: nowrap;
    transition: color 0.3s;
  }

  .merk:hover { color: var(--orange); }

  /* â”€â”€â”€ CONTACT â”€â”€â”€ */
  #contact { background: var(--navy); }

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

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .contact-block {
    margin-bottom: 2rem;
  }

  .contact-block-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.6rem;
    display: block;
  }

  .contact-block p, .contact-block a {
    font-size: 1rem;
    color: rgba(242,242,242,0.75);
    text-decoration: none;
    line-height: 1.6;
    display: block;
    transition: color 0.2s;
    font-weight: 300;
  }

  .contact-block a:hover { color: var(--orange); }

  .hours-table {
    width: 100%;
    border-collapse: collapse;
  }

  .hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hours-table tr:last-child { border-bottom: none; }

  .hours-table td {
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: rgba(242,242,242,0.7);
    font-weight: 300;
  }

  .hours-table td:first-child {
    font-weight: 500;
    color: var(--cream);
    width: 50%;
  }

  .hours-table td:last-child { color: rgba(242,242,242,0.6); }

  .day-today td { color: var(--orange) !important; }
  .day-today td:first-child { color: var(--orange) !important; }

  .contact-map {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(210,20,28,0.15);
    display: flex;
    flex-direction: column;
  }

  .map-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(210,20,28,0.1), rgba(0,0,0,0.55));
  }

  .map-pin { font-size: 3rem; animation: bounce 2s ease infinite; }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .map-address {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
  }

  .map-address span {
    display: block;
    font-size: 0.85rem;
    color: rgba(242,242,242,0.55);
    margin-top: 0.3rem;
    font-weight: 300;
  }

  .map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 1rem;
    transition: all 0.25s ease;
  }

  .map-link:hover { background: var(--orange-light); transform: translateY(-2px); }

  /* â”€â”€â”€ FOOTER â”€â”€â”€ */
  footer {
    background: var(--dark);
    padding: 3rem;
    border-top: 1px solid rgba(210,20,28,0.15);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(242,242,242,0.1);
  }

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

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--cream);
  }

  .footer-logo span { color: var(--orange); }

  .footer-tagline {
    max-width: 34ch;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(242,242,242,0.72);
    font-weight: 300;
  }

  .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .footer-badges span {
    background: rgba(210,20,28,0.13);
    border: 1px solid rgba(210,20,28,0.32);
    color: rgba(242,242,242,0.92);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.55rem;
    border-radius: 3px;
  }

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

  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.4px;
    font-size: 1.02rem;
    color: var(--cream);
    margin-bottom: 0.2rem;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.84rem;
    color: rgba(242,242,242,0.62);
    text-decoration: none;
    line-height: 1.6;
    font-weight: 300;
    transition: color 0.2s ease;
  }

  .footer-col a:hover {
    color: var(--orange);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(242,242,242,0.35);
    font-weight: 300;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: rgba(242,242,242,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--orange); }

  .nav-cart {
    color: rgba(242,242,242,0.88);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }

  .qr-service-box {
    display: grid;
    gap: 0.9rem;
  }

  .qr-placeholder {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(210,20,28,0.6);
    color: rgba(242,242,242,0.85);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.02);
  }

  .small-note {
    font-size: 0.82rem;
    color: rgba(242,242,242,0.5);
  }

  .qr-link {
    display: inline-block;
    width: fit-content;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(210,20,28,0.32);
    background: rgba(255,255,255,0.03);
  }

  .qr-image {
    display: block;
    width: 220px;
    height: 220px;
    object-fit: cover;
  }

  /* â”€â”€â”€ SCROLL ANIMATIONS â”€â”€â”€ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* â”€â”€â”€ MOBILE â”€â”€â”€ */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
    nav.scrolled { padding: 0.85rem 1.25rem; }
    .nav-logo {
      font-size: 1.2rem;
      letter-spacing: 3px;
    }
    .nav-links { display: none; }
    .nav-links.mobile-open {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(10,10,10,0.98);
      padding: 1.35rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
      gap: 0.4rem;
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      z-index: 997;
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }
    .nav-links.mobile-open li {
      width: 100%;
    }
    .nav-links.mobile-open a {
      display: block;
      width: 100%;
      padding: 0.65rem 0;
      text-align: left;
    }
    .nav-links.mobile-open .has-submenu > .submenu {
      position: static;
      min-width: 0;
      border: 0;
      background: transparent;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      padding: 0.2rem 0 0.2rem 1rem;
      margin-top: 0.1rem;
      display: none;
      gap: 0;
    }
    .nav-links.mobile-open .has-submenu.submenu-open > .submenu {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .nav-links.mobile-open .submenu-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.72rem 0;
      font-weight: 600;
      color: var(--cream);
      border-bottom: 1px solid rgba(242,242,242,0.14);
    }
    .nav-links.mobile-open .submenu a {
      white-space: normal;
      font-size: 0.78rem;
      letter-spacing: 1.1px;
      padding: 0.5rem 0;
      color: rgba(242,242,242,0.85);
      border-bottom: 1px solid rgba(242,242,242,0.08);
    }
    .nav-links.mobile-open .nav-icon-group {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 0.55rem;
    }
    .nav-links.mobile-open .nav-icon-link {
      width: auto;
      min-height: 44px;
    }
    .nav-links.mobile-open .nav-icon-link::after {
      display: none;
    }
    .hamburger { display: flex; }

    section { padding: 5rem 1.5rem; }

    .hero { padding: 0 1.5rem; }
    .hero {
      padding-top: 7rem;
      padding-bottom: 3rem;
      display: block;
    }
    .hero-bike {
      display: block;
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      width: min(100%, 420px);
      max-width: 420px;
      margin: 2rem auto 0;
      opacity: 1;
      animation: none;
    }
    .bike-visual {
      animation: bikeFloat 5.5s ease-in-out infinite;
    }
    .hero-content { max-width: 100%; }

    .about-grid,
    .fietsen-intro,
    .contact-grid,
    .prijzen-header,
    .diensten-grid,
    .bikes-grid,
    .prijzen-categories { grid-template-columns: 1fr; gap: 2rem; }
    .shop-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-actions {
      flex-direction: column;
    }
    .cart-btn {
      width: 100%;
      text-align: center;
    }

    .stats-bar { gap: 2rem; padding: 1.2rem; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.7rem;
    }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
  }

  @media (max-width: 480px) {
    nav,
    nav.scrolled {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .nav-logo {
      font-size: 1.1rem;
      letter-spacing: 2px;
    }

    .nav-links.mobile-open {
      top: 60px;
      max-height: calc(100vh - 60px);
      padding: 1.1rem 0.85rem calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .section-title {
      font-size: clamp(1.95rem, 9vw, 2.65rem);
    }

    .stats-bar {
      justify-content: center;
      gap: 1rem;
    }

    .stat {
      min-width: calc(50% - 0.5rem);
    }

    .admin-sidebar {
      grid-template-columns: 1fr;
    }

    .admin-content,
    .cart-panel,
    .checkout-panel,
    .shop-card,
    .secondhand-content .prijs-cat {
      padding: 1rem;
    }

    .admin-table {
      min-width: 540px;
    }

    .bike-visual {
      height: 160px;
      font-size: 4rem;
    }

    .bike-info {
      padding: 1.1rem;
    }

    .map-link {
      width: 100%;
      justify-content: center;
    }

  }

  /* â”€â”€â”€ VANMOOF SECTION â”€â”€â”€ */
  #vanmoof {
    background: linear-gradient(135deg, rgba(5,5,5,0.95), var(--navy));
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem;
  }

  #vanmoof::before {
    content: 'VANMOOF';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18vw;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }

  .vanmoof-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .vanmoof-badge {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(242,242,242,0.7);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }

  .vanmoof-text {
    color: rgba(242,242,242,0.65);
    font-weight: 300;
    line-height: 1.8;
    margin: 1.5rem 0;
    font-size: 1.05rem;
  }

  .contact-grid-spaced {
    margin-top: 4rem;
  }

  .vanmoof-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    filter: drop-shadow(0 0 60px rgba(210,20,28,0.28));
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  @media (max-width: 900px) {
    #vanmoof { padding: 4rem 1.5rem; }
    .vanmoof-inner { grid-template-columns: 1fr; gap: 2rem; }
  }
