/* =============================================================
   HivePress Spot — hps.css
   ============================================================= */
:root {
  --hps-primary:      #3b82f6;
  --hps-primary-dk:   #1d4ed8;
  --hps-green:        #10b981;
  --hps-amber:        #f59e0b;
  --hps-red:          #ef4444;
  --hps-purple:       #8b5cf6;
  --hps-gray-50:      #f9fafb;
  --hps-gray-100:     #f3f4f6;
  --hps-gray-200:     #e5e7eb;
  --hps-gray-600:     #4b5563;
  --hps-gray-700:     #374151;
  --hps-gray-900:     #111827;
  --hps-r:            10px;
  --hps-sh:           0 2px 8px rgba(0,0,0,.08);
  --hps-sh-h:         0 6px 20px rgba(0,0,0,.14);
  --hps-t:            .2s ease;
}

/* ---- 汎用ボタン -------------------------------------------- */
.hps-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.2rem; border-radius: 7px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; border: none; transition: all var(--hps-t);
  line-height: 1.4;
}
.hps-btn--primary  { background: var(--hps-primary); color:#fff !important; }
.hps-btn--primary:hover { background: var(--hps-primary-dk); }
.hps-btn--ghost    { background: transparent; color: var(--hps-gray-700); border:1px solid var(--hps-gray-200); }
.hps-btn--ghost:hover { background: var(--hps-gray-50); }
.hps-btn--secondary{ background:#eff6ff; color: var(--hps-primary); border:1px solid #bfdbfe; }
.hps-btn--danger   { background:#fee2e2; color: var(--hps-red);     border:1px solid #fecaca; }
.hps-btn--danger:hover { background: var(--hps-red); color:#fff; }
.hps-btn--outline  { background: transparent; border:1px solid currentColor; }
.hps-btn--sm       { padding:.3rem .8rem; font-size:.82rem; }
.hps-btn--lg       { padding:.75rem 2rem; font-size:1rem; }
.hps-btn--block    { width:100%; }

/* ---- ステータスバッジ -------------------------------------- */
.hps-status-badge {
  display: inline-block; padding:2px 10px;
  border-radius: 999px; font-size:11px; font-weight:600; letter-spacing:.3px;
}
.hps-status--open   { background:#d1fae5; color:#065f46; }
.hps-status--closed { background:#fef3c7; color:#92400e; }
.hps-status--full   { background:#fee2e2; color:#991b1b; }

/* ---- 通知 -------------------------------------------------- */
.hps-notice { padding:.9rem 1.2rem; border-radius: var(--hps-r); margin-bottom:1.2rem; }
.hps-notice--success { background:#d1fae5; border-left:4px solid #10b981; color:#065f46; }
.hps-notice--warn    { background:#fef3c7; border-left:4px solid #f59e0b; color:#92400e; }
.hps-notice--error   { background:#fee2e2; border-left:4px solid #ef4444; color:#991b1b; }

/* =============================================================
   スポットカード
   ============================================================= */
.hps-spot-grid { display:grid; gap:1.5rem; margin:1.5rem 0; }
.hps-cols-1 { grid-template-columns:1fr; }
.hps-cols-2 { grid-template-columns:repeat(2,1fr); }
.hps-cols-3 { grid-template-columns:repeat(3,1fr); }
.hps-cols-4 { grid-template-columns:repeat(4,1fr); }
@media(max-width:900px){ .hps-cols-3,.hps-cols-4{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .hps-cols-2,.hps-cols-3,.hps-cols-4{ grid-template-columns:1fr; } }

.hps-spot-card { background:#fff; border-radius: var(--hps-r); box-shadow: var(--hps-sh); overflow:hidden; transition: box-shadow var(--hps-t), transform var(--hps-t); }
.hps-spot-card:hover { box-shadow: var(--hps-sh-h); transform:translateY(-2px); }
.hps-spot-card__link { display:block; text-decoration:none; color:inherit; }
.hps-spot-card__thumb { position:relative; aspect-ratio:16/9; overflow:hidden; background: var(--hps-gray-100); }
.hps-spot-card__thumb img { width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.hps-spot-card:hover .hps-spot-card__thumb img { transform:scale(1.04); }
.hps-spot-card__thumb-ph { display:flex; align-items:center; justify-content:center; width:100%; height:100%; font-size:3rem; }
.hps-status-badge { position:absolute; top:8px; left:8px; }
.hps-spot-card__body { padding:1rem; }
.hps-spot-card__body h3 { margin:0 0 .4rem; font-size:1rem; font-weight:700; }
.hps-spot-card__addr  { margin:0 0 .35rem; font-size:.82rem; color: var(--hps-gray-600); }
.hps-spot-card__price { margin:0; font-size:.9rem; font-weight:700; color: var(--hps-primary); }

/* =============================================================
   スポット詳細ページ
   ============================================================= */
.hps-breadcrumb { font-size:.85rem; color: var(--hps-gray-600); margin-bottom:1rem; }
.hps-breadcrumb a { color: var(--hps-primary); text-decoration:none; }
.hps-hero { border-radius: var(--hps-r); overflow:hidden; margin-bottom:1.5rem; position:relative; }
.hps-hero__img { width:100%; max-height:480px; object-fit:cover; display:block; }
.hps-hero__badge { position:absolute; top:12px; left:12px; }

.hps-spot-layout { display:grid; grid-template-columns:1fr 300px; gap:2rem; align-items:start; }
@media(max-width:860px){ .hps-spot-layout{ grid-template-columns:1fr; } }

.hps-spot-title { font-size:1.6rem; font-weight:700; margin:0 0 .6rem; }
.hps-spot-excerpt { color: var(--hps-gray-600); margin-bottom:1.5rem; }

.hps-section { margin-bottom:2rem; padding-bottom:1.5rem; border-bottom:1px solid var(--hps-gray-200); }
.hps-section:last-child { border-bottom:none; }
.hps-section__title { font-size:1.1rem; font-weight:700; margin:0 0 1rem; }

.hps-dl { display:grid; grid-template-columns:120px 1fr; gap:.5rem 1rem; margin:0; }
.hps-dl dt { font-weight:600; color: var(--hps-gray-700); }
.hps-dl dd { margin:0; }
.hps-dl a  { color: var(--hps-primary); }

.hps-facilities { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:.5rem; }
.hps-facilities li { background: var(--hps-gray-100); padding:.3rem .75rem; border-radius:6px; font-size:.85rem; }
.hps-facilities li::before { content:"✓ "; color: var(--hps-green); font-weight:700; }

.hps-hours-table { border-collapse:collapse; width:100%; max-width:360px; }
.hps-hours-table th,.hps-hours-table td { padding:.45rem .7rem; border-bottom:1px solid var(--hps-gray-200); }
.hps-hours-table th { width:50px; font-weight:700; }
.hps-closed-row { color: var(--hps-gray-600); background: var(--hps-gray-50); }

/* サイドバー */
.hps-aside-box { background:#fff; border-radius: var(--hps-r); border:1px solid var(--hps-gray-200); padding:1.25rem; margin-bottom:1.25rem; }
.hps-aside-box h3 { margin:0 0 .75rem; font-size:1rem; font-weight:700; }
.hps-aside-box--cta { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-color:#bfdbfe; }
.hps-cta-price { font-size:1.8rem; font-weight:700; color: var(--hps-primary); margin:0 0 .5rem; }
.hps-cta-price small { font-size:.7em; font-weight:400; }
.hps-cta-note { font-size:.82rem; color: var(--hps-gray-600); margin-bottom:1rem; }

.hps-owner-card { display:flex; align-items:center; gap:.75rem; }
.hps-owner-card__avatar { border-radius:50%; }
.hps-owner-card__name { font-weight:700; margin:0 0 .2rem; }
.hps-owner-card__since { font-size:.8rem; color: var(--hps-gray-600); margin:0; }

/* リスティンググリッド（スポット詳細内） */
.hps-listing-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1rem; }
.hps-listing-mini { display:flex; gap:.75rem; padding:.75rem; background: var(--hps-gray-50); border:1px solid var(--hps-gray-200); border-radius:8px; text-decoration:none; color:inherit; transition:box-shadow var(--hps-t); }
.hps-listing-mini:hover { box-shadow: var(--hps-sh); }
.hps-listing-mini img { width:64px; height:64px; object-fit:cover; border-radius:6px; flex-shrink:0; }
.hps-listing-mini__info { min-width:0; }
.hps-listing-mini__title  { font-weight:600; font-size:.88rem; margin:0 0 .2rem; }
.hps-listing-mini__vendor { font-size:.78rem; color: var(--hps-gray-600); margin:0 0 .15rem; }
.hps-listing-mini__price  { font-size:.82rem; font-weight:700; color: var(--hps-primary); margin:0; }

/* =============================================================
   スポット登録フォーム
   ============================================================= */
.hps-form { max-width:760px; }
.hps-form__title { font-size:1.4rem; font-weight:700; margin-bottom:1.5rem; }
.hps-form__actions { display:flex; gap:1rem; align-items:center; margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--hps-gray-200); }

.hps-fieldset { border:1px solid var(--hps-gray-200); border-radius: var(--hps-r); padding:1.4rem; margin-bottom:1.5rem; background:#fff; }
.hps-fieldset__title { font-size:1rem; font-weight:700; margin:0 0 1.2rem; padding-bottom:.6rem; border-bottom:1px solid var(--hps-gray-200); }
.hps-fieldset__desc  { font-size:.85rem; color: var(--hps-gray-600); margin-bottom:1rem; }

.hps-field { margin-bottom:1rem; }
.hps-field:last-child { margin-bottom:0; }
.hps-field label { display:block; margin-bottom:.35rem; font-size:.88rem; font-weight:600; color: var(--hps-gray-700); }
.hps-field label small { font-weight:400; color: var(--hps-gray-600); }
.hps-field--required label::after { content:" *"; color: var(--hps-red); }
.hps-field input[type=text],.hps-field input[type=number],.hps-field input[type=url],
.hps-field input[type=tel],.hps-field input[type=email],.hps-field textarea,.hps-field select {
  width:100%; padding:.5rem .85rem; border:1px solid var(--hps-gray-200); border-radius:6px;
  font-size:.9rem; background:#fff; box-sizing:border-box; font-family:inherit;
  transition: border-color var(--hps-t);
}
.hps-field input:focus,.hps-field textarea:focus,.hps-field select:focus {
  outline:none; border-color: var(--hps-primary); box-shadow:0 0 0 3px rgba(59,130,246,.15);
}
.hps-field textarea { resize:vertical; min-height:100px; }
.hps-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:600px){ .hps-grid-2{ grid-template-columns:1fr; } }

.hps-checkboxes { display:flex; flex-wrap:wrap; gap:.5rem; }
.hps-checkbox   { display:flex; align-items:center; gap:.35rem; font-size:.88rem; cursor:pointer;
  padding:.3rem .75rem; border:1px solid var(--hps-gray-200); border-radius:6px; }
.hps-checkbox:hover { border-color: var(--hps-primary); }

.hps-radios { display:flex; gap:1rem; flex-wrap:wrap; }
.hps-radios label { display:flex; align-items:center; gap:.4rem; cursor:pointer; font-size:.9rem; }
.hps-dot { display:inline-block; width:10px; height:10px; border-radius:50%; }
.hps-dot--open   { background:#10b981; }
.hps-dot--closed { background:#f59e0b; }
.hps-dot--full   { background:#ef4444; }

/* 営業時間グリッド */
.hps-hours-grid { display:flex; flex-direction:column; gap:.5rem; }
.hps-hours-row  { display:flex; align-items:center; gap:.85rem; padding:.35rem 0; border-bottom:1px solid var(--hps-gray-100); }
.hps-hours-day  { font-weight:700; width:22px; text-align:center; flex-shrink:0; }
.hps-hours-closed { font-size:.85rem; width:70px; flex-shrink:0; cursor:pointer; display:flex; align-items:center; gap:.3rem; }
.hps-hours-times { display:flex; align-items:center; gap:.4rem; }
.hps-hours-times input[type=time] { width:110px; }

/* 画像アップロード */
.hps-upload #hps-dropzone {
  border:2px dashed var(--hps-gray-200); border-radius: var(--hps-r); padding:2.5rem 1rem;
  text-align:center; cursor:pointer; background: var(--hps-gray-50); position:relative;
  transition: border-color var(--hps-t), background var(--hps-t);
}
.hps-upload #hps-dropzone:hover,.hps-dropzone--over {
  border-color: var(--hps-primary); background:#eff6ff;
}
.hps-upload #hps-img-input {
  position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:pointer;
}
.hps-upload #hps-preview-wrap img { max-width:240px; max-height:160px; border-radius:8px; object-fit:cover; display:block; }
.hps-upload #hps-remove-img { margin-top:6px; background:none; border:none; color: var(--hps-red); cursor:pointer; font-size:.85rem; }

/* =============================================================
   マイスポット一覧
   ============================================================= */
.hps-my-spots__hd   { display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.hps-my-spots__hd h3{ font-size:1.1rem; font-weight:700; margin:0; }
.hps-my-spots__list { display:flex; flex-direction:column; gap:.75rem; }
.hps-my-spot-row {
  display:flex; align-items:center; gap:1rem; padding:.85rem 1rem;
  background:#fff; border:1px solid var(--hps-gray-200); border-radius: var(--hps-r);
  box-shadow: var(--hps-sh);
}
.hps-my-spot-row__thumb {
  width:56px; height:56px; border-radius:8px; overflow:hidden;
  background: var(--hps-gray-100); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.5rem;
}
.hps-my-spot-row__thumb img { width:100%; height:100%; object-fit:cover; }
.hps-my-spot-row__body { flex:1; min-width:0; }
.hps-my-spot-row__name  { font-weight:700; margin:0 0 .2rem; font-size:.95rem; }
.hps-my-spot-row__addr  { font-size:.8rem; color: var(--hps-gray-600); margin:0 0 .2rem; }
.hps-my-spot-row__price { font-size:.82rem; font-weight:700; color: var(--hps-primary); margin:0 0 .3rem; }
.hps-my-spot-row__actions { display:flex; gap:.4rem; flex-shrink:0; }

.hps-pub-badge { display:inline-block; padding:2px 8px; border-radius:999px; font-size:.75rem; font-weight:600; }
.hps-pub--ok   { background:#d1fae5; color:#065f46; }
.hps-pub--wait { background:#fef3c7; color:#92400e; }
.hps-pub--draft{ background:#f3f4f6; color:#374151; }

.hps-empty { text-align:center; padding:3rem 1rem; background: var(--hps-gray-50); border-radius: var(--hps-r); border:2px dashed var(--hps-gray-200); }
.hps-empty>p:first-child { font-size:2.5rem; margin-bottom:.5rem; }

/* =============================================================
   ダッシュボード
   ============================================================= */
.hps-dashboard__stats { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2rem; }
.hps-stat { flex:1; min-width:110px; background: var(--hps-gray-50); border-radius: var(--hps-r); padding:1rem; text-align:center; border:1px solid var(--hps-gray-200); }
.hps-stat__v { display:block; font-size:1.6rem; font-weight:700; color: var(--hps-primary); }
.hps-stat__l { font-size:.78rem; color: var(--hps-gray-600); }

.hps-table-list { width:100%; border-collapse:collapse; font-size:.88rem; }
.hps-table-list th,.hps-table-list td { padding:.5rem .75rem; border-bottom:1px solid var(--hps-gray-200); text-align:left; }
.hps-table-list th { font-weight:700; background: var(--hps-gray-50); }

.hps-payment-status { display:inline-block; padding:2px 8px; border-radius:999px; font-size:.78rem; font-weight:600; }
.hps-payment-status--pending   { background:#fef3c7; color:#92400e; }
.hps-payment-status--paid      { background:#d1fae5; color:#065f46; }
.hps-payment-status--cancelled { background:#f3f4f6; color:#374151; }

/* =============================================================
   リスティング内スポットブロック
   ============================================================= */
.hps-listing-spot-block {
  background: var(--hps-gray-50); border:1px solid var(--hps-gray-200);
  border-radius: var(--hps-r); padding:1.25rem; margin:1.5rem 0;
}
.hps-listing-spot-block__heading { font-size:1rem; font-weight:700; margin:0 0 .85rem; }
.hps-listing-spot-block__inner { display:flex; gap:1rem; align-items:flex-start; }
.hps-listing-spot-block__thumb img { width:120px; height:80px; object-fit:cover; border-radius:6px; flex-shrink:0; }
.hps-listing-spot-block__name { font-weight:700; margin:0 0 .35rem; }
.hps-listing-spot-block__name a { color: var(--hps-primary); text-decoration:none; }
.hps-listing-spot-block__addr,.hps-listing-spot-block__price,.hps-listing-spot-block__phone { font-size:.85rem; margin:0 0 .3rem; }
.hps-listing-spot-block__facilities { list-style:none; margin:.4rem 0 .75rem; padding:0; display:flex; flex-wrap:wrap; gap:.35rem; }
.hps-listing-spot-block__facilities li { background:#fff; border:1px solid var(--hps-gray-200); border-radius:4px; padding:1px 7px; font-size:.78rem; }

.hps-listing-spot-badge { margin:.4rem 0; }
.hps-listing-spot-badge a { font-size:.82rem; color: var(--hps-primary); text-decoration:none; }

/* =============================================================
   検索フォーム
   ============================================================= */
.hps-search-form { background: var(--hps-gray-50); border-radius: var(--hps-r); padding:1rem; margin-bottom:1.5rem; border:1px solid var(--hps-gray-200); }
.hps-search-form__row { display:flex; flex-wrap:wrap; gap:.5rem; align-items:center; }
.hps-search-form__input { flex:1; min-width:180px; padding:.5rem .85rem; border:1px solid var(--hps-gray-200); border-radius:6px; font-size:.9rem; }
.hps-search-form__select { padding:.5rem .75rem; border:1px solid var(--hps-gray-200); border-radius:6px; font-size:.9rem; background:#fff; }
.hps-search-form__input:focus,.hps-search-form__select:focus { outline:none; border-color: var(--hps-primary); }

/* =============================================================
   アーカイブページ
   ============================================================= */
.hps-archive-header { margin-bottom:1.5rem; }
.hps-archive-title  { font-size:1.5rem; font-weight:700; margin-bottom:1rem; }
.hps-archive-count  { color: var(--hps-gray-600); font-size:.88rem; margin-bottom:1rem; }
.hps-pagination     { margin:2rem 0; text-align:center; }
.hps-pagination .page-numbers {
  display:inline-block; padding:.4rem .8rem; border:1px solid var(--hps-gray-200);
  border-radius:6px; margin:0 2px; text-decoration:none; color: var(--hps-gray-700);
}
.hps-pagination .page-numbers.current,.hps-pagination .page-numbers:hover {
  background: var(--hps-primary); border-color: var(--hps-primary); color:#fff;
}
.hps-no-results { text-align:center; padding:3rem 1rem; color: var(--hps-gray-600); }

/* ユーティリティ */
.hps-hidden { display:none !important; }

/* =============================================================
   空き状況カレンダー (HPS_Availability)
   ============================================================= */
.hps-calendar { margin:1rem 0; }

.hps-cal-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:.75rem; padding-bottom:.75rem; border-bottom:1px solid var(--hps-gray-200);
}
.hps-cal-month-label { font-weight:700; font-size:1.05rem; }

.hps-cal-weekdays {
  display:grid; grid-template-columns:repeat(7,1fr);
  gap:2px; margin-bottom:4px;
}
.hps-cal-wd {
  text-align:center; font-size:.78rem; font-weight:700;
  color:var(--hps-gray-600); padding:4px 0;
}

.hps-cal-grid {
  display:grid; grid-template-columns:repeat(7,1fr); gap:2px;
}
.hps-cal-day {
  aspect-ratio:1; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  border-radius:6px; cursor:default; font-size:.88rem;
  position:relative; transition:background var(--hps-t);
  padding:4px;
}
.hps-cal-day--empty      { background:transparent; }
.hps-cal-day--available  { background:#d1fae5; color:#065f46; cursor:pointer; }
.hps-cal-day--available:hover { background:#a7f3d0; }
.hps-cal-day--booked     { background:#fee2e2; color:#991b1b; }
.hps-cal-day--blocked    { background:var(--hps-gray-100); color:var(--hps-gray-600); }
.hps-cal-day--past       { background:transparent; color:var(--hps-gray-200); }
.hps-cal-day--today      { outline:2px solid var(--hps-primary); }
.hps-cal-day__num        { font-weight:600; line-height:1; }
.hps-cal-day__dot        { font-size:8px; margin-top:2px; }

.hps-cal-legend {
  display:flex; gap:1rem; flex-wrap:wrap; margin-top:.75rem;
  font-size:.78rem; color:var(--hps-gray-700);
}
.hps-cal-dot {
  display:inline-block; width:10px; height:10px; border-radius:50%; margin-right:3px;
}
.hps-cal-dot--available { background:#10b981; }
.hps-cal-dot--booked    { background:#ef4444; }
.hps-cal-dot--blocked   { background:#9ca3af; }
.hps-cal-loading { padding:2rem; text-align:center; color:var(--hps-gray-600); }

/* 管理パネル */
.hps-cal-manage { margin-top:1.5rem; padding:1.25rem; background:var(--hps-gray-50); border-radius:var(--hps-r); border:1px solid var(--hps-gray-200); }
.hps-cal-manage h4 { margin:0 0 1rem; font-weight:700; }
.hps-cal-manage__form .hps-btn { margin-top:.75rem; }
.hps-cal-slots-list { margin-top:1rem; }
.hps-cal-slot-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:.4rem .6rem; background:#fff; border:1px solid var(--hps-gray-200);
  border-radius:6px; margin-bottom:.4rem; font-size:.85rem;
}

/* =============================================================
   3ステップ予約ウィジェット (HPS_Booking_Widget)
   ============================================================= */
.hps-booking-widget {
  background:#fff; border:1px solid var(--hps-gray-200);
  border-radius:var(--hps-r); padding:1.5rem; box-shadow:var(--hps-sh);
}

/* ステップインジケーター */
.hps-steps {
  display:flex; align-items:center; justify-content:center;
  gap:0; margin-bottom:1.75rem;
}
.hps-steps__div {
  flex:1; height:2px; background:var(--hps-gray-200); max-width:80px;
}
.hps-step {
  display:flex; flex-direction:column; align-items:center; gap:.3rem;
}
.hps-step__n {
  width:34px; height:34px; border-radius:50%;
  background:var(--hps-gray-200); color:var(--hps-gray-600);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem; transition:background .2s,color .2s;
}
.hps-step__l { font-size:.75rem; color:var(--hps-gray-600); }
.hps-step--active   .hps-step__n { background:var(--hps-primary); color:#fff; }
.hps-step--done     .hps-step__n { background:var(--hps-green);   color:#fff; }
.hps-step--active   .hps-step__l,
.hps-step--done     .hps-step__l { color:var(--hps-gray-900); font-weight:600; }

/* Step コンテンツ */
.hps-bw-step { }
.hps-bw-label { font-weight:600; color:var(--hps-gray-700); margin-bottom:1rem; }
.hps-bw-back {
  background:none; border:none; color:var(--hps-primary);
  cursor:pointer; font-size:.88rem; margin-bottom:1rem; padding:0; display:block;
}
.hps-bw-back:hover { text-decoration:underline; }

/* Step 1: スポット概要 */
.hps-bw-spot-summary {
  display:flex; gap:1rem; align-items:flex-start;
  padding:1rem; background:var(--hps-gray-50); border-radius:8px; margin-bottom:1rem;
}
.hps-bw-spot-summary__img {
  width:100px; height:70px; object-fit:cover; border-radius:6px; flex-shrink:0;
}
.hps-bw-spot-summary h3 { margin:0 0 .3rem; font-size:1rem; font-weight:700; }
.hps-bw-spot-summary p  { margin:0 0 .25rem; font-size:.85rem; color:var(--hps-gray-600); }
.hps-bw-price { font-size:1.1rem !important; font-weight:700 !important; color:var(--hps-primary) !important; }
.hps-bw-price small { font-size:.7em; font-weight:400; }

/* Step 2: リスティング選択 */
.hps-bw-listings {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:.85rem; margin-bottom:1rem;
}
.hps-bw-listing-card {
  display:flex; gap:.75rem; padding:.9rem; align-items:flex-start;
  border:2px solid var(--hps-gray-200); border-radius:var(--hps-r);
  cursor:pointer; transition:border-color .2s, box-shadow .2s; position:relative;
}
.hps-bw-listing-card:hover { border-color:var(--hps-primary); }
.hps-bw-listing-card--selected { border-color:var(--hps-primary); box-shadow:0 0 0 3px rgba(59,130,246,.2); }
.hps-bw-listing-card__img {
  width:60px; height:60px; flex-shrink:0; border-radius:6px;
  overflow:hidden; background:var(--hps-gray-100); display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.hps-bw-listing-card__img img { width:100%; height:100%; object-fit:cover; }
.hps-bw-listing-card__title  { font-weight:700; font-size:.9rem; margin:0 0 .2rem; }
.hps-bw-listing-card__vendor { font-size:.78rem; color:var(--hps-gray-600); margin:0 0 .15rem; }
.hps-bw-listing-card__rating { font-size:.78rem; color:var(--hps-amber); margin:0 0 .15rem; }
.hps-bw-listing-card__price  { font-size:.85rem; font-weight:700; color:var(--hps-primary); margin:0; }
.hps-bw-listing-card__check {
  position:absolute; top:6px; right:6px; width:20px; height:20px;
  border-radius:50%; background:var(--hps-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; font-weight:700; opacity:0; transition:opacity .2s;
}
.hps-bw-listing-card--selected .hps-bw-listing-card__check { opacity:1; }

/* Step 3: 確認ボックス */
.hps-bw-summary-box {
  background:var(--hps-gray-50); border:1px solid var(--hps-gray-200);
  border-radius:var(--hps-r); padding:1.25rem; margin-bottom:1rem;
}
.hps-bw-summary-row {
  display:flex; align-items:flex-start; gap:.85rem; margin-bottom:.75rem;
}
.hps-bw-summary-row:last-child { margin-bottom:0; }
.hps-bw-summary-icon { font-size:1.3rem; line-height:1; }
.hps-bw-summary-key  { font-size:.75rem; color:var(--hps-gray-600); margin:0 0 .2rem; text-transform:uppercase; letter-spacing:.4px; }
.hps-bw-summary-val  { font-weight:700; font-size:.95rem; margin:0; color:var(--hps-gray-900); }

/* =============================================================
   スポットフィルターチップ
   ============================================================= */
.hps-spot-chip-filter {
  display:flex; align-items:center; gap:.6rem; flex-wrap:wrap;
  padding:.65rem 0 1.1rem; border-bottom:1px solid var(--hps-gray-200); margin-bottom:1.25rem;
}
.hps-spot-chip-filter__label { font-size:.85rem; font-weight:700; color:var(--hps-gray-700); flex-shrink:0; }
.hps-spot-chip-filter__chips { display:flex; flex-wrap:wrap; gap:.4rem; }
.hps-chip {
  display:inline-block; padding:.25rem .8rem;
  border:1px solid var(--hps-gray-200); border-radius:999px;
  font-size:.8rem; text-decoration:none; color:var(--hps-gray-700); transition:all .15s;
}
.hps-chip:hover { border-color:var(--hps-primary); color:var(--hps-primary); }
.hps-chip--active { background:var(--hps-primary); border-color:var(--hps-primary); color:#fff !important; }

/* =============================================================
   ヘッダー「スポットを追加」リンク
   ============================================================= */

/* HivePress テーマのヘッダーメニュー内 */
.hps-header-submit-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 600;
  color: var(--hps-primary) !important;
  text-decoration: none;
  padding: .35rem .75rem;
  border: 1.5px solid var(--hps-primary);
  border-radius: 6px;
  font-size: .88rem;
  transition: background var(--hps-t), color var(--hps-t);
  white-space: nowrap;
}
.hps-header-submit-link:hover {
  background: var(--hps-primary);
  color: #fff !important;
}
.hps-header-submit-link::before {
  content: "📍";
  font-size: .85em;
}

/* WordPress nav_menu 内 */
.hps-nav-submit-spot > a {
  font-weight: 700;
  color: var(--hps-primary) !important;
}

/* =============================================================
   フローティングアクションボタン（FAB）
   ============================================================= */
.hps-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--hps-primary);
  color: #fff !important;
  text-decoration: none;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(59,130,246,.45);
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.hps-fab:hover {
  background: var(--hps-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,.55);
  color: #fff !important;
}
.hps-fab__icon { font-size: 1.1rem; line-height: 1; }
.hps-fab__label { line-height: 1; }

/* モバイルではラベルを隠してアイコンのみ */
@media (max-width: 480px) {
  .hps-fab { padding: .75rem; border-radius: 50%; }
  .hps-fab__label { display: none; }
}
