.shop-finder {
  margin: 0 auto 28px;
  max-width: 860px;
}

.shop-finder-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 22px 22px;
  box-shadow: 0 2px 12px rgba(52, 116, 212, 0.06);
}

.shop-finder-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  font-weight: 700;
  color: #334155;
}

.shop-finder-body {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.shop-finder-pane label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.shop-finder-input-wrap {
  min-height: 44px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.shop-finder-input-wrap:focus-within {
  border-color: #3474d4;
  box-shadow: 0 0 0 3px rgba(52, 116, 212, 0.1);
}

.shop-finder-input {
  width: 100% !important;
  height: 44px !important;
  line-height: 44px !important;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 15px;
  color: #1e293b;
  outline: none !important;
  box-shadow: none !important;
}

.shop-finder-input::placeholder {
  color: #9ca3af;
}

.shop-finder-input-wrap--select {
  display: flex;
  align-items: center;
  padding-right: 6px;
}

.shop-finder-input-wrap--select .select2-container {
  width: 100% !important;
}

.shop-finder-input-wrap--select .select2-container--default .select2-selection--single {
  height: 44px;
  border: 0;
  background: transparent;
}

.shop-finder-input-wrap--select .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 44px;
  font-size: 15px;
  color: #1e293b;
}

.shop-finder-input-wrap--select .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}

.shop-finder-input-wrap--select .select2-container--disabled .select2-selection--single {
  background: #fff !important;
  cursor: not-allowed;
}

.shop-finder-input-wrap--select .select2-container--disabled .select2-selection__rendered {
  color: #9ca3af !important;
}

.shop-finder-submit {
  height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: #3474d4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.shop-finder-submit:hover {
  background: #2b63b8;
}

.shop-finder-active {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
}

.shop-finder-chip {
  padding: 4px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 500;
  font-size: 12px;
}

.shop-finder-clear {
  color: #3474d4;
  font-weight: 500;
  text-decoration: none;
}

.shop-finder-clear:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .shop-finder-card {
    padding: 16px 18px 18px;
  }

  .shop-finder-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-finder-submit {
    width: 100%;
  }
}
