/* ═══════════════════════════════════════════════════
   NOIR Barbershop — Animaties & Transitions
   ═══════════════════════════════════════════════════ */

/* ── 1. AOS (Animate On Scroll) — eigen implementatie ── */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-in"] {
  transform: none;
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}

[data-aos="zoom-out"] {
  transform: scale(1.12);
}

[data-aos="flip-up"] {
  transform: perspective(600px) rotateX(20deg);
}

/* Delay helpers */
[data-aos-delay="100"]  { transition-delay: 100ms; }
[data-aos-delay="200"]  { transition-delay: 200ms; }
[data-aos-delay="300"]  { transition-delay: 300ms; }
[data-aos-delay="400"]  { transition-delay: 400ms; }
[data-aos-delay="500"]  { transition-delay: 500ms; }
[data-aos-delay="600"]  { transition-delay: 600ms; }
[data-aos-delay="700"]  { transition-delay: 700ms; }
[data-aos-delay="800"]  { transition-delay: 800ms; }
[data-aos-delay="1000"] { transition-delay: 1000ms; }

/* ── 2. Basis Keyframes ── */

/* Fade in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Fade in omhoog */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in omlaag */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in van links */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in van rechts */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Zoom in */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Zoom out */
@keyframes zoomOut {
  from {
    opacity: 0;
    transform: scale(1.15);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide in van links */
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* Slide in van rechts */
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Slide in omhoog */
@keyframes slideInUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Slide out omlaag */
@keyframes slideOutDown {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}

/* ── 3. Speciale Effecten ── */

/* Gouden gloed puls */
@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(201, 168, 76, 0);
  }
}

/* Zachte puls */
@keyframes softPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.04); }
}

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

/* Schaar animatie */
@keyframes scissorSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%       { transform: rotate(-15deg) scale(1.05); }
  75%       { transform: rotate(15deg) scale(1.05); }
}

/* Hartslag */
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.25); }
  30%       { transform: scale(1); }
  45%       { transform: scale(1.15); }
  60%       { transform: scale(1); }
}

/* Zweven (float) */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Shimmer / glans */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Goud lijn groei */
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 64px; opacity: 1; }
}

.gold-line {
  animation: lineGrow 600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Teken / draw stroke */
@keyframes drawStroke {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* Bounce */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-16px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Schud */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80%       { transform: translateX(6px); }
}

/* Wip (wiggle) */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* Flip */
@keyframes flipIn {
  from {
    opacity: 0;
    transform: perspective(600px) rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: perspective(600px) rotateY(0deg);
  }
}

/* Laden rondjes */
@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* Succes cirkel pop */
@keyframes successPop {
  0%  { transform: scale(0) rotate(-20deg); opacity: 0; }
  60% { transform: scale(1.12) rotate(4deg); opacity: 1; }
  80% { transform: scale(0.96) rotate(-2deg); }
  100%{ transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Ring expand voor bevestiging */
@keyframes ringExpand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Nummers tellen */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Deeltjes drijven omhoog */
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(var(--drift, 40px)) scale(0.4);
    opacity: 0;
  }
}

/* ── 4. Hero Particles ── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

.particle-gold {
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.8) 0%,
    rgba(201, 168, 76, 0) 70%
  );
}

.particle-white {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

/* ── 5. Tekst Animaties ── */

/* Woord voor woord */
.word-animate .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 500ms ease forwards;
}

.word-animate .word:nth-child(1)  { animation-delay: 0ms; }
.word-animate .word:nth-child(2)  { animation-delay: 80ms; }
.word-animate .word:nth-child(3)  { animation-delay: 160ms; }
.word-animate .word:nth-child(4)  { animation-delay: 240ms; }
.word-animate .word:nth-child(5)  { animation-delay: 320ms; }
.word-animate .word:nth-child(6)  { animation-delay: 400ms; }

/* Letter voor letter */
.letter-animate .letter {
  display: inline-block;
  opacity: 0;
  animation: fadeInDown 400ms ease forwards;
}

.letter-animate .letter:nth-child(1)  { animation-delay: 0ms; }
.letter-animate .letter:nth-child(2)  { animation-delay: 40ms; }
.letter-animate .letter:nth-child(3)  { animation-delay: 80ms; }
.letter-animate .letter:nth-child(4)  { animation-delay: 120ms; }
.letter-animate .letter:nth-child(5)  { animation-delay: 160ms; }
.letter-animate .letter:nth-child(6)  { animation-delay: 200ms; }
.letter-animate .letter:nth-child(7)  { animation-delay: 240ms; }
.letter-animate .letter:nth-child(8)  { animation-delay: 280ms; }
.letter-animate .letter:nth-child(9)  { animation-delay: 320ms; }
.letter-animate .letter:nth-child(10) { animation-delay: 360ms; }

/* Tekst shimmer */
.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--clr-gold-dark) 0%,
    var(--clr-gold-light) 40%,
    var(--clr-gold) 60%,
    var(--clr-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* Cursor knipperen */
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.typing-cursor::after {
  content: '|';
  color: var(--clr-gold);
  animation: cursorBlink 1s ease-in-out infinite;
  margin-left: 2px;
}

/* ── 6. Hover Micro-animaties ── */

/* Pijl hover */
.arrow-hover {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-base);
}

.arrow-hover i {
  transition: transform var(--transition-spring);
}

.arrow-hover:hover {
  gap: var(--space-3);
}

.arrow-hover:hover i {
  transform: translateX(4px);
}

/* Kaart tilt effect */
.tilt-card {
  transition: transform var(--transition-base);
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) scale(1.02);
}

/* Vergroot bij hover */
.hover-scale {
  transition: transform var(--transition-spring);
}

.hover-scale:hover {
  transform: scale(1.04);
}

/* Glow bij hover */
.hover-glow {
  transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
  box-shadow: var(--shadow-glow);
}

/* Underline animatie */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--transition-base);
}

.hover-underline:hover::after {
  width: 100%;
}

/* ── 7. Laad Animaties ── */

/* Skeleton loader */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-title {
  height: 28px;
  margin-bottom: 12px;
  width: 60%;
}

.skeleton-block {
  height: 200px;
  border-radius: var(--radius-md);
}

/* Spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(var(--clr-gold-rgb), 0.2);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: loaderSpin 700ms linear infinite;
  display: inline-block;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-lg {
  width: 48px;
  height: 48px;
  border-width: 4px;
}

/* Stippen loader */
.dots-loader {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.dots-loader span {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: dotsbounce 1s ease-in-out infinite;
}

.dots-loader span:nth-child(1) { animation-delay: 0ms; }
.dots-loader span:nth-child(2) { animation-delay: 150ms; }
.dots-loader span:nth-child(3) { animation-delay: 300ms; }

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

/* ── 8. Pagina Transities ── */

/* Pagina uitfaden */
.page-transition-out {
  animation: fadeOut 300ms ease forwards;
}

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

/* Pagina infaden */
.page-transition-in {
  animation: fadeIn 400ms ease forwards;
}

/* ── 9. Notificatie Toasts ── */
.toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  min-width: 280px;
  max-width: 380px;
  transform: translateX(120%);
  transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast.hide {
  transform: translateX(120%);
  transition: transform 300ms ease-in;
}

.toast-icon {
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.toast-success .toast-icon { color: #22c55e; }
.toast-error   .toast-icon { color: #ef4444; }
.toast-warning .toast-icon { color: var(--clr-gold); }
.toast-info    .toast-icon { color: #60a5fa; }

.toast-success { border-left: 3px solid #22c55e; }
.toast-error   { border-left: 3px solid #ef4444; }
.toast-warning { border-left: 3px solid var(--clr-gold); }
.toast-info    { border-left: 3px solid #60a5fa; }

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.toast-message {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.4;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-1);
  line-height: 1;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--clr-white);
}

/* Toast voortgangs balk */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--clr-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  animation: toastProgress linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}

/* ── 10. Scroll Animaties ── */

/* Parallax element */
.parallax {
  will-change: transform;
}

/* Reveal van links met masker */
.reveal-mask {
  overflow: hidden;
}

.reveal-mask .reveal-inner {
  transform: translateY(105%);
  transition: transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-mask.revealed .reveal-inner {
  transform: translateY(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.stagger-children.animate > *:nth-child(1)  { transition-delay: 0ms;   opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(2)  { transition-delay: 80ms;  opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(3)  { transition-delay: 160ms; opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(4)  { transition-delay: 240ms; opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(5)  { transition-delay: 320ms; opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(6)  { transition-delay: 400ms; opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(7)  { transition-delay: 480ms; opacity: 1; transform: none; }
.stagger-children.animate > *:nth-child(8)  { transition-delay: 560ms; opacity: 1; transform: none; }

/* ── 11. Knop Ripple Effect ── */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rippleEffect 600ms ease-out forwards;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── 12. Goud Accent Animaties ── */

/* Gouden rand animatie */
@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    border-color: rgba(201, 168, 76, 0.6);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
  }
}

.border-animate {
  animation: borderGlow 2.5s ease-in-out infinite;
}

/* Goud deeltjes burst */
@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc(-50% + var(--burst-x, 30px)),
      calc(-50% + var(--burst-y, -30px))
    ) scale(1);
    opacity: 0;
  }
}

/* Schitterende ster */
@keyframes starTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.4;
    transform: scale(0.7) rotate(45deg);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.2) rotate(-15deg);
  }
}

.twinkle {
  animation: starTwinkle 2s ease-in-out infinite;
}

/* ── 13. Formulier Veld Animaties ── */

/* Label zweef animatie */
.float-label {
  position: relative;
}

.float-label label {
  position: absolute;
  top: 50%;
  left: var(--space-10);
  transform: translateY(-50%);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  pointer-events: none;
  transition: all var(--transition-base);
  background: transparent;
}

.float-label input:focus + label,
.float-label input:not(:placeholder-shown) + label {
  top: 0;
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  background: var(--clr-bg-card);
  padding: 0 var(--space-1);
}

/* Input shake bij fout */
.input-error-shake {
  animation: shake 400ms ease;
}

/* Veld succes flits */
@keyframes fieldSuccess {
  0%   { border-color: rgba(var(--clr-gold-rgb), 0.6); }
  50%  { border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1); }
  100% { border-color: rgba(var(--clr-gold-rgb), 0.6); }
}

.field-valid {
  animation: fieldSuccess 600ms ease;
}

/* ── 14. Slider / Carousel ── */
.slide-enter {
  animation: slideInRight 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-enter-reverse {
  animation: slideInLeft 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-exit {
  animation: slideOutLeft 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-exit-reverse {
  animation: slideOutRight 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

/* ── 15. Kalender Animaties ── */
@keyframes calDayIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cal-day {
  animation: calDayIn 200ms ease backwards;
}

.cal-day:nth-child(1)  { animation-delay: 0ms; }
.cal-day:nth-child(2)  { animation-delay: 10ms; }
.cal-day:nth-child(3)  { animation-delay: 20ms; }
.cal-day:nth-child(4)  { animation-delay: 30ms; }
.cal-day:nth-child(5)  { animation-delay: 40ms; }
.cal-day:nth-child(6)  { animation-delay: 50ms; }
.cal-day:nth-child(7)  { animation-delay: 60ms; }
.cal-day:nth-child(8)  { animation-delay: 70ms; }
.cal-day:nth-child(9)  { animation-delay: 80ms; }
.cal-day:nth-child(10) { animation-delay: 90ms; }
.cal-day:nth-child(11) { animation-delay: 100ms; }
.cal-day:nth-child(12) { animation-delay: 110ms; }
.cal-day:nth-child(13) { animation-delay: 120ms; }
.cal-day:nth-child(14) { animation-delay: 130ms; }

/* Tijdslot animatie */
@keyframes timeslotIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.timeslot-btn {
  animation: timeslotIn 250ms ease backwards;
}

/* ── 16. Navigatie Animaties ── */

/* Mobile menu items */
.nav-menu.open .nav-link {
  animation: fadeInLeft 300ms ease backwards;
}

.nav-menu.open .nav-link:nth-child(1) { animation-delay: 80ms; }
.nav-menu.open .nav-link:nth-child(2) { animation-delay: 130ms; }
.nav-menu.open .nav-link:nth-child(3) { animation-delay: 180ms; }
.nav-menu.open .nav-link:nth-child(4) { animation-delay: 230ms; }
.nav-menu.open .nav-link:nth-child(5) { animation-delay: 280ms; }

/* ── 17. Service Cards Stagger ── */
.services-grid .service-card:nth-child(1) { animation-delay: 0ms; }
.services-grid .service-card:nth-child(2) { animation-delay: 80ms; }
.services-grid .service-card:nth-child(3) { animation-delay: 160ms; }
.services-grid .service-card:nth-child(4) { animation-delay: 240ms; }

/* ── 18. Galerij Hover Animaties ── */
@keyframes galleryReveal {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-cell {
  animation: galleryReveal 500ms ease backwards;
}

.gallery-cell:nth-child(1) { animation-delay: 0ms; }
.gallery-cell:nth-child(2) { animation-delay: 60ms; }
.gallery-cell:nth-child(3) { animation-delay: 120ms; }
.gallery-cell:nth-child(4) { animation-delay: 180ms; }
.gallery-cell:nth-child(5) { animation-delay: 240ms; }
.gallery-cell:nth-child(6) { animation-delay: 300ms; }
.gallery-cell:nth-child(7) { animation-delay: 360ms; }
.gallery-cell:nth-child(8) { animation-delay: 420ms; }
.gallery-cell:nth-child(9) { animation-delay: 480ms; }

/* ── 19. Progress Steps Animatie ── */
@keyframes stepActivate {
  0%   { transform: scale(0.8); }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.progress-step.active .step-circle {
  animation: stepActivate var(--transition-spring) forwards;
}

@keyframes lineComplete {
  from { background: var(--clr-border-light); }
  to   { background: var(--clr-gold); }
}

.progress-line.completed {
  animation: lineComplete 400ms ease forwards;
}

/* ── 20. Speciale UI Glinsterelementen ── */

/* Sterren rating animatie */
.star-fill {
  animation: starFill 300ms ease backwards;
}

@keyframes starFill {
  from { transform: scale(0) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}

.star-fill:nth-child(1) { animation-delay: 0ms; }
.star-fill:nth-child(2) { animation-delay: 60ms; }
.star-fill:nth-child(3) { animation-delay: 120ms; }
.star-fill:nth-child(4) { animation-delay: 180ms; }
.star-fill:nth-child(5) { animation-delay: 240ms; }

/* Prijs teller animatie */
@keyframes priceReveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.price-reveal {
  animation: priceReveal 400ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── 21. Reduce Motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .particle {
    display: none;
  }

  .hero-scroll-indicator {
    animation: none;
  }

  .scroll-wheel {
    animation: none;
  }

  .loader-fill {
    animation: none;
    width: 100%;
  }
}