.finder-section {
  background-color: #f3f4f8;
}

.laptopfinder-card {
  max-width: 720px;
  background-color: #f3f4f8;
  margin: 0 auto;
}

.finder-layout {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  gap: 1.5rem;
  align-items: center;
}

.finder-nav-col {
  display: flex;
  justify-content: center;
}

.finder-nav-btn {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid #f3f4f8;
  background-color: #ffffff;
  color: #f97316;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.finder-nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.finder-content {
  background-color: transparent;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.finder-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.finder-highlight {
  color: #f97316;
}

.finder-progress {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.finder-dot {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background-color: #d1d5db;
}

.finder-dot.active {
  background-color: #3b5bfd;
}

.finder-options {
  margin-top: 1.25rem;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 4px;
}

.finder-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #f3f4f8;
  cursor: pointer;
  font-size: 0.95rem;
}
.finder-option:has(input:hover) {
  border: 2px dashed #3b5bfd;
}
.finder-option input {
  margin-top: 0.2rem;
}

.finder-option-title {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.finder-option-sub {
  font-size: 0.86rem;
  color: #6b7280;
}

.finder-option:has(input:checked) {
  border-color: #3b5bfd;
  box-shadow: 0 0 0 1px #3b5bfd;
}

.finder-show-btn {
  width: 70%;
  border-radius: 10px;
  border: none;
  background-color: #3b5bfd;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
}

/* only small tweaks on mobile, layout same on all devices */
@media (max-width: 767.98px) {
  .finder-section {
    padding-inline: 0.75rem;
  }

  .finder-card {
    max-width: 100%;
  }

  .finder-nav-btn {
    width: 64px;
    height: 64px;
    font-size: 0.8rem;
  }

  .finder-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .finder-layout{
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }
}