/* Alleen styles voor de process slider sectie */
.process .process-slider-container {
  /* max-width: 100%; */
  width: 100%;
  background: white;
  border-radius: 8px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  overflow: hidden;
  position: relative;
  margin-top: 40px;
  max-width: 900px;
  margin: 40px auto 0;
}

.process .process-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.process .process-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.process .process-slides article {
  min-width: 100%;
  background: white;
  box-sizing: border-box;
  height: 700px;
}

.process .process-slides h3 {
  margin-bottom: 20px;
  font-weight: 600;
}
.process .process-slides h3 span {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  padding-top: 8px;
  padding-right: 1px;
  margin-top: -5px;
}

.process .process-slides p {
  font-weight: 400;
}

.process .process-navigation {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  padding: 30px 50px;
  background: #f5f5f7;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}

.process .slide {
  display: flex;
  align-items: center;
  gap: 40px;
}
.process .slide-text-container {
  max-width: 400px;
}

.process .mobile-card button {
  display: none;
}

.process .mobile-card {
  flex-shrink: 0;
  max-width: 550px;
  width: auto;
  height: 700px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.process .mobile-card img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.process .process-nav-button {
  background: #fff200;
  /* color: white; */
  border: none;
  padding: 16px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process .process-nav-button:hover {
  background: #fff200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.process .process-nav-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.process .process-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.process .process-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.process .process-dot.active {
  background: #fff200;
  transform: scale(1.2);
}

.process .process-dot:hover {
  background: #25262f;
}
@media (max-width: 768px) {
  .process {
    padding: 40px 12px;
    width: calc(100% - 24px);
  }

  .process .process-slides article {
    padding: 0;
    height: auto !important;
  }

  .process .process-slides h3 {
    font-size: 1.5em;
  }

  .process .process-slides p {
    font-size: 1em;
  }

  /* TEXT CONTAINER - altijd zichtbaar op mobile, verander volgorde */
  .process .slide-text-container {
    display: block !important;
    padding: 20px 16px !important;
    order: 1 !important;
  }

  /* IMAGE - verborgen standaard, zichtbaar na open */
  .process .mobile-card img {
    display: none !important;
  }

  .process .mobile-card.open img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px;
    animation: slideDown 0.4s ease !important;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* SLIDE container */
  .process .slide {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
  }

  /* MOBILE CARD styling */
  .process .mobile-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    background-color: #f5f5f7;
    order: 2 !important;
  }

  .process .mobile-card button {
    display: block !important;
    width: calc(100% - 32px) !important;
    margin: 0 16px 16px 16px !important;
    padding: 12px 24px !important;
    background: #1d1d1d !important;
    color: #fff;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
  }

  .process .slide-text-container h3,
  .process .slide-text-container span,
  .process .slide-text-container p {
    color: #25262f !important;
  }

  .process .process-navigation {
    padding: 20px 30px;
  }

  .process .process-nav-button {
    /* padding: 10px 16px; */
    font-size: 0.9em;
  }

  .process .process-slides article {
    min-width: 100%;
    background: #f5f5f7;
    box-sizing: border-box;
    height: 700px;
  }
}
