#seinto-product-finder {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  padding: 2.5rem 3rem;
  margin: 3rem auto;
  max-width: 1400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.finder-row {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}

.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #ddd;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.step-circle.active {
  background-color: #0104FC;
  color: #fff;
  box-shadow: 0 3px 10px rgba(1, 4, 252, 0.4);
}

.finder-col {
  flex: 1 1 250px;
  min-width: 220px;
  transition: transform 0.3s ease;
}

.finder-col:hover {
  transform: translateY(-3px);
}

.finder-col label {
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.finder-col select {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 14px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.finder-col select:focus {
  border-color: #0104FC;
  box-shadow: 0 0 0 3px rgba(1, 4, 252, 0.25);
  outline: none;
}

.finder-button button {
  margin-top: 1rem;
  background: #0104fc;
  border: none;
  padding: 1.2rem 3.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(1, 4, 252, 0.4);
  transform: translateY(0);
}

.finder-button button:hover {
  background: #000099;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1, 4, 252, 0.5);
}

.finder-button button:active {
  transform: translateY(1px);
  box-shadow: 0 5px 16px rgba(1, 4, 252, 0.4);
}

@media (max-width: 992px) {
  .finder-row {
    flex-direction: column;
  }

  .finder-col {
    width: 100%;
    flex: 1 1 100%;
    min-width: auto;
  }

  .finder-button {
    width: 100%;
    margin-top: 1.5rem;
  }
}
