/**
 * 商品検索フィルター用CSS
 * PC/スマホ共通で使用
 */

/* ローディングオーバーレイ */
.search-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.search-loading-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* スピナー */
.search-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #fff;
  border-top-color: #e94b65;
  border-radius: 50%;
  animation: searchSpinner 0.8s linear infinite;
}

@keyframes searchSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* テキスト */
.search-loading-text {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
