/* Aankoop Modal Styles */
#aankoop-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#aankoop-modal.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.aankoop-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.aankoop-modal__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  min-width: 350px;
  max-width: 500px;
}

.aankoop-modal__icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: bounce 1s infinite;
}

.aankoop-modal__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.aankoop-modal__message {
  font-size: 16px;
  margin: 0 0 25px 0;
  opacity: 0.9;
  line-height: 1.4;
}

.aankoop-modal__progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.aankoop-modal__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  border-radius: 2px;
  width: 0%;
  transition: width 4s linear;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .aankoop-modal__card {
    min-width: 280px;
    padding: 25px 20px;
  }
  
  .aankoop-modal__icon {
    font-size: 50px;
  }
  
  .aankoop-modal__title {
    font-size: 20px;
  }
  
  .aankoop-modal__message {
    font-size: 14px;
  }
}
