:root {
  color-scheme: light;
  --wood-light: #e8d4b8;
  --wood-mid: #d4b896;
  --wood-dark: #b8956a;
  --paper: #faf6ef;
  --paper-warm: #f5eedf;
  --paper-shadow: #c9b08a;
  --ink: #3d2f22;
  --ink-soft: #6b5744;
  --muted: #8a7560;
  --line: #d9c4a8;
  --pop-red: #d94a3a;
  --pop-red-dark: #b8382a;
  --pop-yellow: #f5d547;
  --pop-yellow-dark: #e8c030;
  --pop-blue: #4a8fd9;
  --pop-green: #5aab6a;
  --pop-orange: #e8873a;
  --tape-yellow: #f7e07a;
  --panel: rgba(250, 246, 239, 0.94);
  --panel-2: rgba(245, 238, 223, 0.92);
  --cyan: #4a8fd9;
  --cyan-soft: rgba(74, 143, 217, 0.14);
  --pink: #d5a0ae;
  --green: #5aab6a;
  --yellow: #e8c030;
  --shadow: 0 8px 24px rgba(61, 47, 34, 0.14);
  --asphalt: var(--ink);
  --text: var(--ink);
  --font-rounded:
    "Hiragino Maru Gothic ProN", "Tsukushi A Round Gothic", "Yu Gothic", Meiryo, system-ui,
    sans-serif;
  --font-heading:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  --font-hand:
    "Tsukushi A Round Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, cursive;
  --font-price:
    "Hiragino Sans", "Arial Rounded MT Bold", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f6f8f5;
  color: var(--text);
  font-family: var(--font-rounded);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  border-radius: 8px;
  background: var(--cyan);
  color: #101517;
  cursor: pointer;
  font-weight: 700;
  min-height: 40px;
  padding: 0 14px;
}

button:hover {
  filter: brightness(1.06);
}

input,
select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--text);
  padding: 0 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.shell {
  min-height: 100vh;
  padding-bottom: 108px;
}

.main {
  margin: 0 auto;
  max-width: 520px;
  min-width: 0;
  padding: 18px 16px 28px;
}

.nav {
  align-items: end;
  background: #202729;
  border: 0;
  border-radius: 14px 14px 0 0;
  bottom: 0;
  box-shadow: 0 -8px 22px rgba(20, 28, 28, 0.18);
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  left: 0;
  margin: 0;
  padding: 0 max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom))
    max(10px, env(safe-area-inset-right));
  position: fixed;
  right: 0;
  z-index: 50;
}

.nav-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  font-family: var(--font-rounded);
  font-size: 11px;
  font-weight: 700;
  gap: 4px;
  justify-content: center;
  min-height: 52px;
  padding: 8px 4px 6px;
  text-align: center;
  white-space: nowrap;
}

.nav-button-label {
  line-height: 1.1;
}

.nav-button.active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--green);
}

.nav-button-post {
  background: var(--green);
  border-color: #202729;
  border-radius: 999px;
  box-shadow: 0 0 0 3px #202729, 0 3px 10px rgba(90, 171, 106, 0.28);
  color: #fff;
  font-family: var(--font-heading);
  height: 58px;
  justify-self: center;
  margin-top: -14px;
  min-height: 58px;
  padding: 7px 8px 6px;
  transform: translateY(-2px);
  width: 58px;
}

.nav-button-post.active {
  background: var(--green);
  border-color: #202729;
  box-shadow: 0 0 0 3px #202729, 0 3px 10px rgba(90, 171, 106, 0.28);
  color: #fff;
}

.nav-post-plus {
  align-items: center;
  display: flex;
  font-size: 24px;
  font-weight: 800;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.nav-post-label {
  font-size: 9px;
  line-height: 1;
}

.nav-icon-home,
.nav-icon-map,
.nav-icon-favorites,
.nav-icon-mypage {
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}

.nav-icon-home::before {
  border: 2px solid currentColor;
  border-top: 0;
  bottom: 2px;
  content: "";
  height: 10px;
  left: 3px;
  position: absolute;
  width: 14px;
}

.nav-icon-home::after {
  border: 2px solid currentColor;
  border-bottom: 0;
  content: "";
  height: 8px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  transform-origin: top left;
  width: 8px;
}

.nav-icon-map::before {
  background: currentColor;
  border-radius: 50% 50% 50% 0;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 14px;
}

.nav-icon-map::after {
  background: var(--paper);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 8px;
  position: absolute;
  top: 5px;
  width: 5px;
}

.nav-button.active .nav-icon-map::after {
  background: #fff;
}

.nav-icon-favorites::before {
  background: currentColor;
  border-radius: 50% 50% 0 0;
  content: "";
  height: 7px;
  left: 3px;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  width: 7px;
}

.nav-icon-favorites::after {
  background: currentColor;
  border-radius: 50% 50% 0 0;
  content: "";
  height: 7px;
  left: 10px;
  position: absolute;
  top: 6px;
  transform: rotate(45deg);
  width: 7px;
}

.nav-icon-mypage::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 6px;
  position: absolute;
  top: 1px;
  width: 8px;
}

.nav-icon-mypage::after {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
  height: 8px;
  left: 3px;
  position: absolute;
  top: 10px;
  width: 14px;
}

.side-panel,
.context-panel,
.history-panel,
.location-panel,
.store-facts {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(34, 42, 43, 0.05);
  color: #202620;
  padding: 16px;
}

.quiet-panel {
  background: transparent;
  border-color: rgba(139, 105, 70, 0.35);
  padding: 14px;
}

.side-panel h2,
.context-panel h3,
.panel-head h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.notice {
  border-left: 1px solid rgba(213, 160, 174, 0.58);
  color: #93a5ad;
  font-size: 12px;
  line-height: 1.55;
  margin-top: 8px;
  padding-left: 9px;
}

.muted {
  color: var(--muted);
}

.topbar,
.store-hero {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.topbar h2,
.store-hero h2 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0;
}

.topbar p,
.store-hero p {
  margin: 0;
}

.search-combo {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(240px, 420px) 88px;
}

.quiet-search {
  grid-template-columns: minmax(180px, 260px) 64px;
  opacity: 0.82;
}

.quiet-search input {
  min-height: 38px;
}

.quiet-search button {
  min-height: 38px;
  padding: 0 10px;
}

.map-layout,
.results-layout,
.store-layout,
.wanted-layout,
.home-layout,
.settings-layout {
  display: grid;
  gap: 18px;
}

.map-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.results-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.store-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.wanted-layout {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr) 280px;
}

.home-layout {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.settings-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.home-card,
.settings-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.home-card h3,
.settings-list h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  margin: 0 0 10px;
}

.home-lead,
.map-lead,
.observe-lead {
  margin-top: 8px;
}

.post-topbar .observe-lead {
  color: #8a928a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 10px;
  max-width: 34em;
}

.map-sidebar-lead {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.panel-head .map-sidebar-lead {
  margin-top: -4px;
}

.usage-home-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.usage-hero-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  min-height: 54px;
}

.usage-title-block {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.usage-home-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.usage-home-lead {
  color: var(--ink-soft);
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin: 3px 0 0;
}

.usage-search-row {
  display: grid;
  gap: 8px;
}

.usage-search-bar {
  align-items: center;
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(34, 42, 43, 0.04);
  display: grid;
  gap: 8px;
  grid-template-columns: 24px minmax(0, 1fr) 30px;
  padding: 4px 8px 4px 12px;
}

.usage-search-bar input {
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--font-rounded);
  font-weight: 700;
  min-height: 36px;
  padding: 0;
}

.usage-search-bar input:focus {
  outline: none;
}

.usage-search-icon {
  border: 2px solid var(--muted);
  border-radius: 50%;
  display: block;
  height: 16px;
  position: relative;
  width: 16px;
}

.usage-search-icon::after {
  background: var(--muted);
  bottom: -1px;
  content: "";
  height: 2px;
  position: absolute;
  right: -4px;
  transform: rotate(45deg);
  width: 7px;
}

.usage-search-submit {
  align-items: center;
  background: transparent;
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  min-height: 30px;
  padding: 0;
  width: 30px;
}

.usage-search-submit-icon {
  border: 2px solid var(--muted);
  border-radius: 50%;
  display: block;
  height: 14px;
  position: relative;
  width: 14px;
}

.usage-search-submit-icon::after {
  background: var(--muted);
  bottom: -1px;
  content: "";
  height: 2px;
  position: absolute;
  right: -4px;
  transform: rotate(45deg);
  width: 6px;
}

.usage-home {
  display: grid;
  gap: 18px;
}

.usage-category-grid {
  display: grid;
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(34, 42, 43, 0.05);
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
}

.usage-category-button {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 0;
  border-right: 1px solid #edf0ec;
  border-top: 1px solid #edf0ec;
  box-shadow: none;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-family: var(--font-rounded);
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
  justify-content: center;
  min-height: 72px;
  padding: 9px 5px 8px;
  position: relative;
}

.usage-category-button::before {
  content: none;
}

.usage-category-button.active {
  background: #f7fff4;
  color: var(--ink);
  outline: 2px solid #5fa060;
  outline-offset: -3px;
}

.usage-category-icon {
  color: #5d6865;
  display: block;
  height: 22px;
  z-index: 1;
  position: relative;
  width: 22px;
}

.usage-category-icon svg {
  display: block;
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 22px;
}

.usage-category-icon::before,
.usage-category-icon::after {
  content: none !important;
}

.usage-category-icon-all {
  color: #4d8fe8;
}

.usage-category-icon-storage {
  color: #a87925;
}

.usage-category-icon-kitchen {
  color: #6b6f76;
}

.usage-category-icon-cleaning {
  color: #4b91d9;
}

.usage-category-icon-entry {
  color: #7b7a6e;
}

.usage-category-icon-diy {
  color: #777a80;
}

.usage-category-icon-stationery {
  color: #c99a27;
}

.usage-category-icon-interior {
  color: #8a6bb4;
}

.usage-category-icon-family {
  color: #d0695e;
}

.usage-category-icon-bath {
  color: #4a9dc6;
}

.usage-category-icon-beauty {
  color: #d56a91;
}

.usage-category-icon-garden {
  color: #5fa060;
}

.usage-category-icon-leisure {
  color: #60a875;
}

.usage-category-icon-pet {
  color: #6f6a78;
}

.usage-category-icon-disaster {
  color: #d85b52;
}

.usage-category-label {
  line-height: 1.2;
  position: relative;
  text-align: center;
  z-index: 1;
}

.usage-category-icon-all::before {
  border: 2px solid var(--pop-blue);
  border-radius: 2px;
  content: "";
  height: 14px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 14px;
}

.usage-category-icon-storage::before {
  border: 2px solid #8b6914;
  content: "";
  height: 10px;
  left: 5px;
  position: absolute;
  top: 8px;
  width: 12px;
}

.usage-category-icon-storage::after {
  border: 2px solid #8b6914;
  border-bottom: 0;
  content: "";
  height: 6px;
  left: 3px;
  position: absolute;
  top: 4px;
  width: 16px;
}

.usage-category-icon-kitchen::before {
  border: 2px solid #666;
  border-radius: 50% 50% 40% 40%;
  content: "";
  height: 12px;
  left: 5px;
  position: absolute;
  top: 4px;
  width: 12px;
}

.usage-category-icon-cleaning::before {
  background: var(--pop-blue);
  border-radius: 2px 2px 0 0;
  content: "";
  height: 10px;
  left: 8px;
  position: absolute;
  top: 3px;
  width: 6px;
}

.usage-category-icon-cleaning::after {
  border: 2px solid var(--pop-blue);
  border-radius: 0 0 6px 6px;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 10px;
  width: 14px;
}

.usage-category-icon-stationery::before {
  background: var(--pop-yellow-dark);
  content: "";
  height: 14px;
  left: 10px;
  position: absolute;
  top: 4px;
  transform: rotate(12deg);
  width: 3px;
}

.usage-category-icon-hobby::before {
  border: 2px solid #666;
  border-radius: 4px;
  content: "";
  height: 10px;
  left: 4px;
  position: absolute;
  top: 8px;
  width: 14px;
}

.usage-category-icon-entry::before {
  border: 2px solid #6b7a78;
  border-radius: 2px 2px 0 0;
  content: "";
  height: 15px;
  left: 6px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.usage-category-icon-entry::after {
  background: #6b7a78;
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 13px;
  position: absolute;
  top: 11px;
  width: 3px;
}

.usage-category-icon-interior::before {
  border: 2px solid #666;
  border-radius: 3px;
  content: "";
  height: 12px;
  left: 4px;
  position: absolute;
  top: 6px;
  width: 14px;
}

.usage-category-icon-interior::after {
  background: #666;
  content: "";
  height: 6px;
  left: 10px;
  position: absolute;
  top: 2px;
  width: 2px;
}

.usage-category-icon-family::before {
  border: 2px solid #d05b55;
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 3px;
  position: absolute;
  top: 4px;
  width: 7px;
}

.usage-category-icon-family::after {
  border: 2px solid #d05b55;
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 11px;
  position: absolute;
  top: 8px;
  width: 9px;
}

.usage-category-icon-bath::before {
  border: 2px solid var(--pop-blue);
  border-radius: 0 0 7px 7px;
  content: "";
  height: 9px;
  left: 3px;
  position: absolute;
  top: 9px;
  width: 16px;
}

.usage-category-icon-bath::after {
  background: var(--pop-blue);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 7px;
  position: absolute;
  top: 5px;
  width: 10px;
}

.usage-category-icon-beauty::before {
  border: 2px solid #d05b86;
  border-radius: 50% 50% 45% 45%;
  content: "";
  height: 14px;
  left: 5px;
  position: absolute;
  top: 4px;
  width: 12px;
}

.usage-category-icon-beauty::after {
  background: #d05b86;
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 8px;
  position: absolute;
  top: 12px;
  width: 6px;
}

.usage-category-icon-diy::before {
  background: #888;
  content: "";
  height: 3px;
  left: 3px;
  position: absolute;
  top: 10px;
  transform: rotate(-30deg);
  width: 16px;
}

.usage-category-icon-disaster::before {
  border: 2px solid var(--pop-red);
  border-radius: 50% 50% 0 0;
  content: "";
  height: 10px;
  left: 6px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.usage-category-icon-leisure::before {
  border-bottom: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--pop-green);
  content: "";
  left: 3px;
  position: absolute;
  top: 8px;
}

.usage-category-icon-pet::before {
  border: 2px solid #666;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 8px;
}

.usage-category-icon-pet::after {
  border: 2px solid #666;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 10px;
  position: absolute;
  top: 4px;
  width: 8px;
}

.usage-category-icon-garden::before {
  background: var(--pop-green);
  border-radius: 50% 0 50% 0;
  content: "";
  height: 12px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 10px;
}

.usage-section-head {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 14px;
}

.usage-section-head-main {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.usage-new-badge {
  background: var(--pop-red);
  clip-path: polygon(50% 0%, 62% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 38% 35%);
  color: #fff;
  display: inline-grid;
  font-size: 9px;
  font-weight: 900;
  height: 34px;
  letter-spacing: 0.04em;
  place-items: center;
  width: 34px;
}

.usage-section-head h3 {
  font-family: var(--font-rounded);
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.usage-section-count {
  color: var(--muted);
  flex-shrink: 0;
  font-family: var(--font-price);
  font-size: 13px;
  font-weight: 700;
}

.usage-sort-row {
  align-items: center;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.usage-rank-filter-row {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.usage-rank-filter-button {
  align-items: center;
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(34, 42, 43, 0.04);
  color: #52605d;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  gap: 5px;
  padding: 7px 12px;
  white-space: nowrap;
}

.usage-rank-filter-button.active {
  box-shadow: 0 0 0 2px rgba(79, 140, 82, 0.18);
}

.usage-rank-filter-button.active.usage-rank-filter-hall {
  background: #f7efd6;
  border-color: #d8c07a;
  color: #8a7020;
}

.usage-rank-filter-button.active.usage-rank-filter-s {
  background: #fceee9;
  border-color: #e5b09d;
  color: #b45a42;
}

.usage-rank-filter-button.active.usage-rank-filter-a {
  background: #e8f4f3;
  border-color: #a8cbc8;
  color: #3f6f6c;
}

.usage-rank-filter-button.active.usage-rank-filter-b {
  background: #f1f1f1;
  border-color: #c8c8c8;
  color: #666;
}

.usage-rank-filter-button.active.usage-rank-filter-all {
  background: #f7faf6;
  border-color: #93c85a;
  color: #3f6d42;
}

.usage-score-pill {
  align-items: center;
  background: #f7fbf5;
  border: 1px solid #d8e6d3;
  border-radius: 999px;
  color: #345d38;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 4px;
  line-height: 1;
  padding: 5px 8px;
  white-space: nowrap;
}

.usage-score-pill-total {
  font-family: var(--font-price);
  font-size: 13px;
  font-weight: 900;
}

.usage-score-pill-axis {
  color: #6d786e;
  font-size: 10px;
  font-weight: 700;
}

.usage-score-pill-locked {
  background: rgba(247, 251, 245, 0.9);
  position: relative;
  z-index: 2;
}

.usage-sort-button {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(34, 42, 43, 0.04);
  color: #52605d;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  min-height: 34px;
  padding: 0 14px;
}

.usage-sort-button.active {
  background: #5fa060;
  border-color: #5fa060;
  color: #fff;
}

.usage-photo-toggle {
  align-items: center;
  background: transparent;
  color: #52605d;
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  margin-left: auto;
  min-height: 34px;
  padding: 0;
}

.usage-photo-toggle-knob {
  background: #d7ddd6;
  border-radius: 999px;
  display: block;
  height: 22px;
  position: relative;
  transition: background 0.18s ease;
  width: 40px;
}

.usage-photo-toggle-knob::before {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(34, 42, 43, 0.16);
  content: "";
  height: 18px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 0.18s ease;
  width: 18px;
}

.usage-photo-toggle.active .usage-photo-toggle-knob {
  background: #5fa060;
}

.usage-photo-toggle.active .usage-photo-toggle-knob::before {
  transform: translateX(18px);
}

.usage-card-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.usage-card {
  background: #fff;
  border: 1px solid #e2e6df;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(34, 42, 43, 0.05);
  display: grid;
  gap: 12px;
  grid-template-columns: 116px minmax(0, 1fr);
  overflow: visible;
  padding: 10px;
  position: relative;
}

.usage-card-pin {
  display: none;
}

.usage-card-pin-red {
  background: none;
}

.usage-card-pin-blue {
  background: none;
}

.usage-card-pin-green {
  background: none;
}

.usage-card-image {
  align-self: start;
  aspect-ratio: auto;
  background:
    linear-gradient(145deg, rgba(232, 212, 184, 0.35), rgba(250, 247, 238, 0.78)),
    linear-gradient(135deg, rgba(139, 105, 70, 0.12), transparent 55%);
  border-radius: 10px;
  height: 116px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 116px;
}

.usage-card-photo,
.usage-detail-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.usage-image-badge {
  background: rgba(28, 36, 32, 0.72);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 5px 8px;
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 2;
}

.usage-image-badge-ai {
  background: rgba(46, 92, 68, 0.82);
}

.usage-image-badge-user {
  background: rgba(62, 78, 120, 0.82);
}

.usage-image-badge-editorial,
.usage-image-badge-verified {
  background: rgba(90, 78, 58, 0.82);
}

.usage-image-note {
  color: #6a746c;
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0 0;
}

.usage-detail-image-wrap {
  position: relative;
}

.usage-card-image::before {
  background: rgba(255, 255, 255, 0.35);
  border: 1px dashed rgba(139, 105, 70, 0.25);
  content: "";
  inset: 8px;
  position: absolute;
}

.usage-card-rank-locked {
  position: relative;
}

.usage-card-locked-image {
  filter: blur(11px) saturate(0.92);
  opacity: 0.72;
}

.usage-card-locked-body {
  position: relative;
}

.usage-card-locked-tags {
  position: relative;
  z-index: 2;
}

.usage-card-locked-title {
  filter: blur(2.5px);
  margin: 0;
  opacity: 0.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.usage-card-locked-desc {
  display: grid;
  filter: blur(5px);
  gap: 6px;
  margin: 0;
  min-height: 44px;
  opacity: 0.48;
  pointer-events: none;
  user-select: none;
}

.usage-card-locked-bar {
  background: linear-gradient(90deg, #c8d0c3 0%, #dde3d8 50%, #c8d0c3 100%);
  border-radius: 999px;
  display: block;
  height: 9px;
}

.usage-card-locked-bar-wide {
  width: 96%;
}

.usage-card-locked-bar-narrow {
  width: 62%;
}

.usage-locked-info {
  background: none;
  border: 0;
  color: #2f4532;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  gap: 3px;
}

.usage-locked-info-card {
  align-items: flex-start;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  left: 0;
  margin: 0;
  padding: 52px 0 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 2;
}

.usage-locked-info-detail {
  align-items: center;
  inset: auto 0 0;
  justify-content: center;
  padding: 16px;
  position: absolute;
  text-align: center;
  z-index: 3;
}

.usage-locked-info-headline {
  align-items: flex-start;
  display: flex;
  gap: 7px;
  width: 100%;
}

.usage-locked-info-icon {
  background: #3f6d42;
  border-radius: 2px;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 11px;
  margin-top: 1px;
  position: relative;
  width: 13px;
}

.usage-locked-info-icon::before {
  background: transparent;
  border: 2.5px solid #3f6d42;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  box-sizing: border-box;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  width: 15px;
}

.usage-locked-info-icon::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: 3px;
  transform: translateX(-50%);
  width: 3px;
}

.usage-locked-info-label {
  color: #5a645a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.usage-locked-info-message {
  color: #3a4540;
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  min-width: 0;
  text-align: left;
}

.usage-locked-info-detail .usage-locked-info-message {
  font-size: 13px;
  max-width: 20em;
  text-align: left;
}

.usage-locked-info-detail .usage-locked-info-headline {
  justify-content: center;
  max-width: 22em;
}

.usage-locked-info-action {
  color: #3f6d42;
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 4px;
  padding-left: 20px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: 100%;
}

.usage-locked-info-detail .usage-locked-info-action {
  margin-top: 6px;
  padding-left: 0;
  text-align: center;
}

.usage-locked-info:hover .usage-locked-info-action {
  color: #2f5a32;
}

.usage-locked-info:focus-visible {
  outline: 2px solid rgba(79, 140, 82, 0.45);
  outline-offset: 2px;
}

.usage-detail-locked-stage {
  border: 1px solid #e6ebe3;
  border-radius: 14px;
  margin-bottom: 4px;
  overflow: hidden;
  padding: 12px 14px 96px;
  position: relative;
}

.usage-detail-locked-stage .usage-detail-image-wrap.usage-card-locked-image {
  border-radius: 10px;
  height: 160px;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}

.usage-detail-locked-stage .usage-detail-image-wrap.usage-card-locked-image .usage-detail-image {
  height: 100%;
  width: 100%;
}

.usage-detail-header-locked {
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.usage-detail-locked-body-hidden {
  filter: blur(6px) brightness(0.72);
  max-height: 120px;
  opacity: 0.28;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.usage-detail-locked-cta-backdrop {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 246, 0.88) 38%);
  bottom: 0;
  height: 120px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.usage-card-hall-locked .usage-card-qol,
.usage-card-hall-locked .usage-card-cost,
.usage-card-rank-locked .usage-card-qol,
.usage-card-rank-locked .usage-card-cost {
  user-select: none;
}

.usage-card-photo-icon {
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(95, 70, 45, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 rgba(95, 70, 45, 0.08), 0 2px 0 rgba(95, 70, 45, 0.08);
  display: grid;
  height: 42px;
  left: 50%;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -58%);
  width: 42px;
  z-index: 1;
}

.usage-card-photo-icon::before {
  background: transparent;
  content: "□";
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  height: auto;
  line-height: 1;
  width: auto;
}

.usage-card-photo-icon-all::before {
  content: "□";
}

.usage-card-photo-icon-storage::before {
  content: "▤";
}

.usage-card-photo-icon-kitchen::before {
  content: "○";
}

.usage-card-photo-icon-cleaning::before {
  content: "♢";
}

.usage-card-photo-icon-stationery::before {
  content: "/";
}

.usage-card-photo-icon-hobby::before {
  content: "□";
}

.usage-card-photo-icon-diy::before {
  content: "＋";
}

.usage-card-photo-icon-disaster::before {
  content: "△";
}

.usage-card-photo-icon-leisure::before {
  content: "▾";
}

.usage-card-photo-icon-pet::before {
  content: "∞";
}

.usage-card-photo-icon-garden::before {
  content: "●";
}

.usage-card-photo-label {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(95, 70, 45, 0.14);
  border-radius: 999px;
  bottom: 12px;
  box-shadow: 0 1px 0 rgba(95, 70, 45, 0.08);
  color: var(--ink);
  font-family: var(--font-rounded);
  font-size: 9px;
  font-weight: 800;
  left: 50%;
  max-width: calc(100% - 34px);
  overflow: hidden;
  padding: 4px 8px;
  position: absolute;
  text-overflow: ellipsis;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}

.usage-rank-label {
  background: var(--pop-yellow);
  border-radius: 2px;
  box-shadow: 1px 1px 0 var(--pop-yellow-dark);
  color: var(--ink);
  font-family: var(--font-rounded);
  font-size: 10px;
  font-weight: 900;
  left: 6px;
  padding: 3px 7px;
  position: absolute;
  top: 6px;
  z-index: 1;
}

.usage-card-price-tag {
  background: #fff5f3;
  border: 1px solid var(--pop-red);
  border-radius: 999px;
  bottom: auto;
  color: var(--pop-red);
  font-family: var(--font-price);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  position: static;
  width: fit-content;
}

.usage-card-body {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 2px 0;
}

.usage-card-meta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.usage-category-tag {
  background: rgba(139, 105, 70, 0.12);
  border-radius: 3px;
  color: var(--ink-soft);
  display: inline-block;
  font-family: var(--font-rounded);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  width: fit-content;
}

.usage-card-title {
  font-family: var(--font-rounded);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
}

.usage-card-item {
  color: var(--ink-soft);
  font-family: var(--font-rounded);
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

.usage-card-item-label {
  color: var(--muted);
  font-weight: 700;
}

.usage-card-qol {
  color: var(--muted);
  font-family: var(--font-rounded);
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
}

.usage-card-cost {
  color: #52605d;
  font-family: var(--font-rounded);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.usage-card-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}

.usage-card-like {
  align-items: center;
  border-radius: 999px;
  color: #d7473f;
  display: flex;
  font-family: var(--font-price);
  font-size: 12px;
  font-weight: 900;
  gap: 5px;
  min-height: 30px;
  padding: 4px 8px;
}

.usage-card-like-button {
  background: #fff7f6;
  border: 1px solid rgba(215, 71, 63, 0.18);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.usage-card-like-button:hover {
  background: #fff0ee;
  border-color: rgba(215, 71, 63, 0.32);
  transform: translateY(-1px);
}

.usage-card-like-button.active {
  background: #ffe9e7;
  border-color: rgba(215, 71, 63, 0.42);
  color: #c93630;
}

.usage-card-like-locked {
  color: #b8b0b0;
  cursor: default;
  opacity: 0.72;
}

.usage-card-like-locked .usage-card-like-icon {
  background: #b8b0b0;
  clip-path: polygon(50% 85%, 10% 40%, 25% 20%, 50% 38%, 75% 20%, 90% 40%);
}

.usage-card-like-icon {
  background: currentColor;
  clip-path: polygon(50% 85%, 10% 40%, 25% 20%, 50% 38%, 75% 20%, 90% 40%);
  display: block;
  height: 13px;
  width: 13px;
}

.usage-card-save-icon {
  border: 2px solid var(--muted);
  border-radius: 0 0 2px 2px;
  display: block;
  height: 12px;
  position: relative;
  width: 10px;
}

.usage-card-save-icon::before {
  border: 2px solid var(--muted);
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
  content: "";
  height: 4px;
  left: -2px;
  position: absolute;
  top: -6px;
  width: 10px;
}

.usage-card-save {
  align-items: center;
  background: transparent;
  border: 0;
  color: #52605d;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  gap: 4px;
  padding: 4px 0;
}

.usage-card-save.active {
  color: #2d6b3a;
}

.usage-card-save.active .usage-card-save-icon,
.usage-card-save.active .usage-card-save-icon::before {
  border-color: #2d6b3a;
}

.usage-card-save-disabled,
.usage-detail-save-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.usage-card-save-disabled .usage-card-save-icon,
.usage-card-save-disabled .usage-card-save-icon::before,
.usage-detail-save-disabled .usage-card-save-icon,
.usage-detail-save-disabled .usage-card-save-icon::before {
  border-color: #b0b8b4;
}

.usage-card-rank-chip {
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
}

.usage-store-hint-bar {
  align-items: center;
  background: linear-gradient(135deg, #eaf7ea, #f6fbf4);
  border: 1px solid #d9ead6;
  border-radius: 12px;
  color: #4a8a54;
  display: grid;
  gap: 6px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 52px;
  padding: 10px 12px;
  text-align: left;
}

.usage-store-hint-pin {
  background: #5fa060;
  border-radius: 50% 50% 50% 0;
  display: block;
  height: 18px;
  transform: rotate(-45deg);
  width: 18px;
}

.usage-store-hint-pin::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  margin: 6px;
  width: 6px;
}

.usage-store-hint-bar span:not(.usage-store-hint-pin) {
  font-size: 13px;
  font-weight: 900;
}

.usage-store-hint-bar small {
  color: #6a7a6b;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.usage-rank {
  font-family: var(--font-rounded);
  font-size: 10px;
  font-weight: 800;
}

.usage-rank {
  align-items: center;
  display: inline-flex;
  gap: 5px;
  font-weight: 800;
}

.usage-rank-mark {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  height: 16px;
  justify-content: center;
  width: 16px;
}

.usage-rank-mark-svg {
  display: block;
  height: 16px;
  overflow: visible;
  width: 16px;
}

.usage-rank-text {
  line-height: 1;
}

.usage-rank-a {
  background: #e8f4f3;
  color: #3f6f6c;
}

.usage-rank-hall {
  background: #f7efd6;
  color: #8a7020;
}

.usage-rank-s {
  background: #fceee9;
  color: #b45a42;
}

.usage-rank-b {
  background: #f1f1f1;
  color: #666;
}

.usage-rank-stats {
  margin-top: 14px;
}

.usage-rank-stats-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.usage-rank-stats-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.usage-rank-stats-all {
  background: none;
  border: 0;
  color: #3a7fc1;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
}

.usage-rank-stats-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usage-rank-stat-card {
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  gap: 4px;
  min-height: 96px;
  padding: 10px 8px 8px;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.usage-rank-stat-card:hover {
  box-shadow: 0 4px 14px rgba(34, 42, 43, 0.08);
}

.usage-rank-stat-card.active {
  box-shadow: 0 0 0 2px rgba(79, 140, 82, 0.22);
}

.usage-rank-stat-card-hall.active {
  border-color: #e6c88a;
}

.usage-rank-stat-card-s.active {
  border-color: #cfc0e3;
}

.usage-rank-stat-card-a.active {
  border-color: #b9d4b3;
}

.usage-rank-stat-card-b.active {
  border-color: #d5d8d4;
}

.usage-rank-stat-label {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
  line-height: 1.3;
}

.usage-rank-stat-count {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 2px;
}

.usage-rank-stat-foot {
  display: block;
  font-size: 10px;
  line-height: 1.35;
  margin-top: auto;
}

.usage-rank-stat-unit {
  font-size: 12px;
  font-weight: 700;
  margin-left: 1px;
}

.usage-rank-stat-card-hall {
  background: #fff6e3;
}

.usage-rank-stat-card-hall .usage-rank-stat-count {
  color: #c4780a;
}

.usage-rank-stat-card-hall .usage-rank-stat-foot {
  color: #9a6b1f;
}

.usage-rank-stat-card-s {
  background: #f1ebf8;
}

.usage-rank-stat-card-s .usage-rank-stat-count {
  color: #5b4d7a;
}

.usage-rank-stat-card-s .usage-rank-stat-foot {
  color: #7a6a96;
}

.usage-rank-stat-card-a {
  background: #edf6ea;
}

.usage-rank-stat-card-a .usage-rank-stat-count {
  color: #3f6d42;
}

.usage-rank-stat-card-a .usage-rank-stat-foot {
  color: #5a7a5d;
}

.usage-rank-stat-card-b {
  background: #f3f4f3;
}

.usage-rank-stat-card-b .usage-rank-stat-count {
  color: #5a645a;
}

.usage-rank-stat-card-b .usage-rank-stat-foot {
  color: #7a8478;
}

@media (max-width: 380px) {
  .usage-rank-stats-grid {
    gap: 6px;
  }

  .usage-rank-stat-card {
    min-height: 88px;
    padding: 8px 6px 6px;
  }

  .usage-rank-stat-label {
    font-size: 10px;
  }

  .usage-rank-stat-count {
    font-size: 18px;
  }

  .usage-rank-stat-foot {
    font-size: 9px;
  }
}

.settings-plan-grid-single {
  grid-template-columns: 1fr;
}

.settings-plan-card-current {
  border-color: #93c85a;
  box-shadow: 0 0 0 2px rgba(147, 200, 90, 0.22);
}

.settings-plan-card-free .settings-plan-name {
  color: #5a645a;
}

.settings-plan-card-pro .settings-plan-name {
  color: #4f8c52;
}

.settings-plan-current-badge {
  background: #edf6ea;
  border-color: #cfe1cb;
  color: #3f6d42;
}

.settings-plan-addon-note {
  color: #687268;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

.settings-plan-features-plain li {
  display: block;
}

.settings-plan-features-plain li::before {
  content: none;
  display: none;
}

.settings-phase2-note {
  color: #687268;
  font-size: 12px;
  margin-top: 10px;
}

.settings-phase2-note ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.usage-season-theme {
  background:
    linear-gradient(transparent 23px, rgba(180, 200, 220, 0.25) 24px),
    var(--paper);
  background-size: 100% 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  position: relative;
}

.usage-season-theme::after {
  background: rgba(255, 255, 255, 0.45);
  bottom: 10px;
  content: "";
  height: 18px;
  position: absolute;
  right: 14px;
  transform: rotate(3deg);
  width: 36px;
}

.usage-season-tag {
  background: var(--pop-blue);
  color: #fff;
  display: inline-block;
  font-family: var(--font-rounded);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 4px 10px;
  transform: rotate(-1deg);
}

.usage-season-title {
  color: var(--pop-blue);
  font-family: var(--font-hand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
}

.usage-season-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.usage-season-checklist li {
  color: var(--ink-soft);
  font-family: var(--font-rounded);
  font-size: 13px;
  font-weight: 700;
}

.usage-season-checklist li::before {
  color: var(--pop-red);
  content: "☑ ";
}

.usage-empty {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 8px;
  grid-column: 1 / -1;
  padding: 28px 18px;
  text-align: center;
}

.usage-empty p {
  color: var(--muted);
  margin: 0;
}

.usage-card-clickable {
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.usage-card-clickable:hover,
.usage-card-clickable:focus-visible {
  box-shadow: 0 10px 28px rgba(61, 47, 34, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.usage-product-intro {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.usage-basic {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.usage-value-hints {
  display: grid;
  gap: 2px;
}

.usage-value-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.usage-value-disclaimer {
  color: #687268;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.usage-detail {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.usage-detail-header {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(34, 42, 43, 0.05);
  color: #202620;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.usage-detail-header-top {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.usage-detail-company {
  border-radius: 999px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 6px 12px;
  white-space: nowrap;
}

.usage-detail-company-daiso {
  background: #fff4f2;
  border: 1px solid #e8b4aa;
  color: #b84a38;
}

.usage-detail-company-seria {
  background: #f2f8f3;
  border: 1px solid #b8d4bc;
  color: #3d7a4a;
}

.usage-detail-company-cando {
  background: #f8f2fa;
  border: 1px solid #d4b8de;
  color: #7a4a8a;
}

.usage-detail-company-generic {
  background: #f7f4ee;
  border: 1px solid #d9c4a8;
  color: #6b5744;
}

.usage-detail-back {
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
}

.usage-detail-image {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(232, 212, 184, 0.34), rgba(249, 247, 241, 0.88)),
    #f4ecdd;
  border: 1px solid #e2d3bd;
  border-radius: 12px;
  color: #7d7264;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  width: 100%;
}

.usage-detail-body {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(34, 42, 43, 0.05);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.usage-detail-section {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(34, 42, 43, 0.04);
  color: #202620;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
}

.usage-detail-section-primary {
  background: #f7fbf5;
  border-color: #d8e6d3;
}

.usage-editor-score-panel {
  background: #fff;
  border: 1px solid #dfe8dc;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(34, 42, 43, 0.05);
  display: grid;
  gap: 14px;
  padding: 16px;
}

.usage-editor-score-head {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.usage-editor-score-head h3 {
  color: #2b2520;
  font-size: 15px;
  margin: 0 0 4px;
}

.usage-editor-score-head p {
  color: #687268;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.usage-editor-score-total {
  align-items: baseline;
  background: #edf6ea;
  border: 1px solid #cfe1cb;
  border-radius: 12px;
  color: #2d6b3a;
  display: flex;
  flex-shrink: 0;
  gap: 2px;
  padding: 8px 10px;
}

.usage-editor-score-total span {
  font-family: var(--font-price);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.usage-editor-score-total small {
  font-size: 12px;
  font-weight: 800;
}

.usage-editor-score-total-hall {
  align-items: center;
  background: #fff6e3;
  border-color: #ead59c;
  color: #8a5f1c;
}

.usage-editor-score-total-hall span {
  font-family: var(--font-rounded);
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
}

.usage-editor-score-body {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 132px minmax(0, 1fr);
}

.usage-radar-wrap {
  height: 132px;
  position: relative;
  width: 132px;
}

.usage-radar {
  height: 100%;
  width: 100%;
}

.usage-radar-grid {
  animation: usageRadarFadeIn 360ms ease-out both;
  fill: none;
  stroke: #d8e6d3;
  stroke-width: 1.3;
}

.usage-radar-grid-inner {
  opacity: 0.68;
}

.usage-radar-axis {
  animation: usageRadarFadeIn 360ms ease-out both;
  stroke: #e5ebe2;
  stroke-width: 1.1;
}

.usage-radar-value {
  animation: usageRadarGrow 560ms cubic-bezier(0.2, 0.82, 0.24, 1) 120ms both;
  fill: rgba(90, 171, 106, 0.22);
  stroke: #5aab6a;
  stroke-linejoin: round;
  stroke-width: 2;
  transform-box: view-box;
  transform-origin: 50% 50%;
}

.usage-radar-label {
  color: #6b766d;
  font-size: 10px;
  font-weight: 800;
  position: absolute;
  white-space: nowrap;
}

.usage-radar-label-top {
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
}

.usage-radar-label-right {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.usage-radar-label-bottom {
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.usage-radar-label-left {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.usage-editor-score-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.usage-editor-score-list div {
  display: grid;
  gap: 4px;
}

.usage-editor-score-list dt {
  color: #52605d;
  font-size: 12px;
  font-weight: 800;
}

.usage-editor-score-list dd {
  align-items: center;
  display: grid;
  gap: 6px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin: 0;
}

.usage-editor-score-list .strongest dt,
.usage-editor-score-list .strongest strong {
  color: #2d6b3a;
}

.usage-editor-score-bar {
  background: #edf1eb;
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}

.usage-editor-score-bar span {
  animation: usageScoreBarGrow 520ms cubic-bezier(0.2, 0.82, 0.24, 1) 220ms both;
  background: #5aab6a;
  border-radius: inherit;
  display: block;
  height: 100%;
  transform-origin: left center;
}

@keyframes usageRadarFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes usageRadarGrow {
  from {
    opacity: 0;
    transform: scale(0);
  }
  62% {
    opacity: 1;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes usageScoreBarGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .usage-radar-grid,
  .usage-radar-axis,
  .usage-radar-value,
  .usage-editor-score-bar span {
    animation: none;
  }
}

.usage-editor-score-list strong {
  color: #2b332d;
  font-family: var(--font-price);
  font-size: 14px;
}

.usage-editor-score-list small {
  color: #7a847b;
  font-size: 11px;
}

@media (max-width: 380px) {
  .usage-editor-score-body {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .usage-editor-score-list {
    width: 100%;
  }
}

.usage-detail-section-muted {
  background: #fbfcfa;
}

.usage-detail-section-note {
  background: #fffdf9;
  border-color: #eadfd0;
}

.usage-detail-section-title {
  color: #8b6b3e;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.usage-detail-section-body {
  font-family: var(--font-rounded);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.usage-detail-trial-note {
  background: #edf6ea;
  border: 1px solid #cfe1cb;
  border-radius: 10px;
  color: #3f6d42;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px;
  padding: 10px 12px;
}

.usage-detail-share:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.usage-detail-store-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.usage-detail-store-item {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.usage-detail-store-item strong {
  display: block;
  font-size: 0.92rem;
}

.usage-detail-store-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.usage-detail-map-cta {
  width: 100%;
}

.usage-detail-chip-text {
  background: #edf6ea;
  border: 1px solid #d8e6d3;
  border-radius: 10px;
  color: #355d39;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding: 10px 12px;
}

.usage-detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.usage-detail-title {
  color: #2b2520;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
}

.usage-detail-catch {
  color: #3d8ad8;
  font-family: var(--font-rounded);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.usage-detail-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.usage-detail-facts div {
  display: grid;
  gap: 6px;
}

.usage-detail-facts dt {
  color: #687268;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.usage-detail-facts dd {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.usage-detail-actions {
  border-top: 1px solid #e1e5df;
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.usage-detail-action-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.usage-detail-like,
.usage-detail-save {
  align-items: center;
  background: #fff;
  border: 1px solid #d5ddd2;
  border-radius: 10px;
  color: #52605d;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  gap: 6px;
  justify-content: center;
  min-height: 48px;
  padding: 0 10px;
  width: 100%;
}

.usage-detail-like {
  background: #fff7f6;
  border-color: rgba(215, 71, 63, 0.22);
  color: #d7473f;
}

.usage-detail-like small {
  color: currentColor;
  font-family: var(--font-price);
  font-size: 11px;
  font-weight: 900;
}

.usage-detail-like.active {
  background: #ffe9e7;
  border-color: rgba(215, 71, 63, 0.44);
  box-shadow: 0 0 0 2px rgba(215, 71, 63, 0.12);
  color: #c93630;
}

.usage-detail-like-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.usage-detail-save.active {
  background: #f0faf0;
  border-color: #8bc49a;
  color: #2d6b3a;
}

.usage-detail-save.active .usage-card-save-icon,
.usage-detail-save.active .usage-card-save-icon::before {
  border-color: #2d6b3a;
}

.usage-demand-button {
  align-items: start;
  background: #fffdf7;
  border: 1px solid #eadfd0;
  border-radius: 10px;
  color: #6a4d28;
  cursor: pointer;
  display: inline-grid;
  font-family: inherit;
  gap: 3px;
  min-height: 48px;
  padding: 8px 10px;
  text-align: left;
  width: 100%;
}

.usage-demand-button-main {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.usage-demand-button-sub {
  color: #8a7560;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.usage-demand-button.active {
  background: #fff5db;
  border-color: #e6c88a;
  box-shadow: 0 0 0 2px rgba(230, 200, 138, 0.18);
  color: #8a5f1c;
}

.usage-demand-button.active .usage-demand-button-sub {
  color: #8a5f1c;
}

.usage-demand-button-seek {
  background: #f7fbff;
  border-color: #cfe0ef;
  color: #3e6891;
}

.usage-demand-button-seek .usage-demand-button-sub {
  color: #63788b;
}

.usage-demand-button-seek.active {
  background: #eef7ff;
  border-color: #91badc;
  box-shadow: 0 0 0 2px rgba(74, 143, 217, 0.16);
  color: #2f679a;
}

@media (max-width: 380px) {
  .usage-detail-action-row > * {
    flex: 1 1 150px;
  }
}

.usage-detail-save-note {
  font-size: 12px;
  margin: 0;
}

.usage-detail-share {
  align-items: center;
  background: #5aab6a;
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 0 10px;
  width: 100%;
}

.usage-detail-share-icon {
  border: 2px solid currentColor;
  border-radius: 0 8px 0 8px;
  display: block;
  height: 14px;
  position: relative;
  transform: rotate(0deg);
  width: 14px;
}

.usage-detail-share-icon::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  top: -5px;
  transform: translateX(-50%);
  width: 6px;
}

.usage-detail-share-note {
  font-size: 12px;
  margin: 0;
}

.usage-detail-cta {
  align-items: start;
  background: #edf6ea;
  border: 1px solid #cfe1cb;
  border-radius: 12px;
  color: #2d4f31;
  display: grid;
  font-weight: 800;
  gap: 4px;
  min-height: 52px;
  padding: 12px 16px;
  text-align: left;
  width: 100%;
}

.usage-detail-cta-label {
  font-size: 15px;
}

.usage-detail-cta-sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.map-context-panel {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(34, 42, 43, 0.04);
  color: #202620;
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
}

.map-context-title {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

.map-context-lead {
  font-size: 12px;
  line-height: 1.45;
  margin: -4px 0 0;
}

.map-context-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.map-context-facts div {
  display: grid;
  gap: 4px;
}

.map-context-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0;
}

.map-context-facts dd {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.map-context-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.map-context-disclaimer {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.map-context-reset {
  justify-self: start;
  min-height: 36px;
  padding: 0 12px;
}

.map-related-stores {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.map-store-ref-card {
  align-items: start;
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(34, 42, 43, 0.04);
  color: #202620;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.map-store-ref-actions,
.result-card-actions {
  align-items: start;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.map-store-ref-actions .ghost-button,
.result-card-actions .ghost-button,
.result-card-actions a.ghost-button,
.map-store-ref-actions a.ghost-button {
  min-height: 34px;
  padding: 0 12px;
  text-align: center;
  white-space: nowrap;
}

.map-store-ref-card .store-title {
  background: none;
  border: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  padding: 0;
  text-align: left;
}

.map-store-ref-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-post-hint {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  white-space: nowrap;
}

.map-post-hint-recent {
  background: #edf6ea;
  color: #3d7a4a;
}

.map-post-hint-old {
  background: #fff8e8;
  color: #8b6914;
}

.map-post-hint-none {
  background: #f3f4f2;
  color: #6b7568;
}

.map-store-ref-card p {
  font-size: 12px;
  line-height: 1.45;
  margin: 4px 0 0;
}

.home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-tags span {
  background: #141b21;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  padding: 5px 10px;
}

.settings-main {
  display: grid;
  gap: 12px;
}

.settings-list {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.settings-item {
  align-items: start;
  background: #ffffff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(49, 74, 51, 0.08);
  color: #202620;
  display: grid;
  gap: 4px;
  justify-items: start;
  min-height: 56px;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.settings-item-action {
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.settings-item-action:hover {
  background: #f6fbf4;
  border-color: rgba(95, 160, 96, 0.42);
}

.settings-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
}

.settings-hint {
  color: #687268;
  font-size: 13px;
  font-weight: 400;
}

.settings-lead {
  margin-top: 8px;
}

.mypage-topbar {
  margin-bottom: 12px;
}

.mypage-plan-block {
  display: grid;
  gap: 12px;
}

.mypage-section-title {
  border-bottom: 1px solid #e1e5df;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  padding-bottom: 10px;
}

.mypage-layout .settings-main,
.mypage-sub-layout .settings-main {
  gap: 16px;
}

.mypage-menu-card {
  background: #ffffff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(49, 74, 51, 0.08);
  overflow: hidden;
}

.mypage-menu-row {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ecefe9;
  color: #202620;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 28px 1fr auto;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.mypage-menu-row:last-child {
  border-bottom: 0;
}

.mypage-menu-row:hover {
  background: #f8faf7;
}

.mypage-menu-row-toggle {
  grid-template-columns: 28px 1fr auto;
}

.mypage-menu-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mypage-menu-text strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.mypage-menu-text small {
  color: #687268;
  font-size: 12px;
  line-height: 1.45;
}

.mypage-menu-chevron {
  border-right: 2px solid #b8c0b8;
  border-top: 2px solid #b8c0b8;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

.mypage-menu-icon {
  display: block;
  height: 22px;
  position: relative;
  width: 22px;
}

.mypage-menu-icon-location::before {
  background: #4f8c52;
  border-radius: 50% 50% 50% 0;
  content: "";
  height: 16px;
  left: 3px;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 16px;
}

.mypage-menu-icon-location::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 9px;
  position: absolute;
  top: 6px;
  width: 5px;
}

.mypage-menu-icon-bell::before {
  border: 2px solid #4f8c52;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
  height: 10px;
  left: 6px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.mypage-menu-icon-bell::after {
  background: #4f8c52;
  border-radius: 2px;
  content: "";
  height: 3px;
  left: 4px;
  position: absolute;
  top: 14px;
  width: 14px;
}

.mypage-menu-icon-legal::before {
  border: 2px solid #4f8c52;
  border-radius: 2px;
  content: "";
  height: 14px;
  left: 5px;
  position: absolute;
  top: 4px;
  width: 12px;
}

.mypage-menu-icon-legal::after {
  border-bottom: 2px solid #4f8c52;
  border-left: 2px solid #4f8c52;
  content: "";
  height: 6px;
  left: 8px;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 6px;
}

.mypage-menu-icon-help::before {
  border: 2px solid #4f8c52;
  border-radius: 50%;
  content: "";
  height: 16px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 16px;
}

.mypage-menu-icon-help::after {
  color: #4f8c52;
  content: "?";
  font-size: 12px;
  font-weight: 800;
  left: 8px;
  line-height: 1;
  position: absolute;
  top: 6px;
}

.mypage-menu-icon-logout::before {
  border: 2px solid #4f8c52;
  border-radius: 2px;
  content: "";
  height: 12px;
  left: 4px;
  position: absolute;
  top: 5px;
  width: 12px;
}

.mypage-menu-icon-logout::after {
  border-right: 2px solid #4f8c52;
  border-top: 2px solid #4f8c52;
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  top: 7px;
  transform: rotate(45deg);
  width: 8px;
}

.mypage-back-button {
  margin-bottom: 6px;
  padding-left: 0;
}

.settings-plan-status {
  background: #f7f8f6;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  color: #202620;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px 16px;
}

.settings-plan-status:not(.muted) {
  background: #edf6ea;
  border-color: #cfe1cb;
}

.settings-plan-status-label {
  color: #687268;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.settings-plan-status-tier {
  align-items: center;
  display: flex;
  font-size: 18px;
  gap: 8px;
  line-height: 1.2;
  margin: 0;
}

.settings-plan-status-tier strong {
  font-family: var(--font-body);
  font-weight: 800;
}

.settings-plan-status-dot {
  background: #5fa060;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 10px;
  width: 10px;
}

.settings-plan-status:not(.muted) .settings-plan-status-dot {
  background: #4f8c52;
}

.settings-plan-status-desc {
  color: #405040;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin: 2px 0 0;
}

.settings-plan-status.muted {
  background: #f7f8f6;
  border-color: #e1e5df;
  color: #687268;
  font-weight: 600;
}

.settings-plan-status.muted .settings-plan-status-desc {
  color: #687268;
}

.favorites-lead {
  font-size: 13px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.favorites-topbar {
  margin-bottom: 14px;
}

.favorites-tab-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.favorites-tab {
  align-items: center;
  background: #fff;
  border: 1px solid #dce5d8;
  border-radius: 10px;
  color: #405040;
  cursor: pointer;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 4px;
  justify-items: center;
  line-height: 1.35;
  min-height: 52px;
  padding: 10px 8px;
  text-align: center;
}

.favorites-tab.active {
  background: #edf6ea;
  border-color: #93c85a;
  color: #2f5a32;
}

.favorites-tab-count {
  color: #687268;
  font-size: 11px;
  font-weight: 600;
}

.favorites-tab.active .favorites-tab-count {
  color: #4f8c52;
}

.favorites-panel {
  min-width: 0;
}

.favorites-usage-list {
  margin-top: 0;
}

.favorites-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.favorites-layout {
  margin-top: 0;
}

.settings-section {
  background: #ffffff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(49, 74, 51, 0.08);
  color: #202620;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.settings-section-head {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.settings-section-head h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

.settings-section-note {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.settings-value {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.settings-count,
.settings-badge {
  background: #f3f5f2;
  border: 1px solid #e1e5df;
  border-radius: 999px;
  color: #687268;
  font-size: 12px;
  padding: 3px 9px;
  white-space: nowrap;
}

.settings-badge {
  background: #edf6ea;
  border-color: #cfe1cb;
  color: #4f8c52;
}

.settings-entries {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.settings-entry {
  background: #fbfcfa;
  border: 1px solid #edf0eb;
  border-radius: 8px;
  color: #202620;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
}

.settings-entry-action {
  align-items: center;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.settings-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  justify-content: flex-end;
}

.favorites-store-action {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.settings-entry-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  font-family: inherit;
  gap: 2px;
  padding: 0;
  text-align: left;
}

.settings-entry-button:hover strong {
  color: #2d6b3a;
}

.settings-entry strong {
  font-size: 14px;
}

.settings-entry span {
  font-size: 12px;
}

.settings-empty {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.settings-plan-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-plan-card {
  background: #fbfcfa;
  border: 1px solid #dce5d8;
  border-radius: 10px;
  color: #202620;
  display: grid;
  gap: 7px;
  padding: 12px;
}

.settings-plan-card-premium {
  background: #f7faf6;
  border-color: #cbdcc7;
}

.settings-plan-name {
  color: #4f8c52;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.settings-plan-card-premium .settings-plan-name {
  color: #376f7d;
}

.settings-campaign-badge {
  background: #fff4d6;
  border: 1px solid #efd37d;
  border-radius: 999px;
  color: #8a6814;
  font-size: 11px;
  font-weight: 800;
  justify-self: start;
  line-height: 1;
  padding: 5px 8px;
}

.settings-campaign-badge.premium {
  background: #edf7f8;
  border-color: #bcdadd;
  color: #376f7d;
}

.settings-plan-card strong {
  font-family: var(--font-body);
  font-size: 18px;
}

.settings-plan-card p {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.settings-price-note,
.settings-campaign-note {
  color: #687268;
}

.settings-campaign-note {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.settings-plan-features {
  color: #405040;
  display: grid;
  font-size: 12px;
  gap: 5px;
  line-height: 1.45;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.settings-plan-features li {
  align-items: start;
  display: grid;
  gap: 6px;
  grid-template-columns: auto 1fr;
}

.settings-plan-features li::before {
  background: #5fa060;
  border-radius: 50%;
  content: "";
  height: 5px;
  margin-top: 7px;
  width: 5px;
}

.settings-plan-card-premium .settings-plan-features li::before {
  background: #376f7d;
}

.settings-plan-cta {
  background: #4f8c52;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 0 14px;
  width: 100%;
}

.settings-plan-cta.premium {
  background: #376f7d;
}

.settings-plan-cta:hover {
  filter: brightness(0.96);
}

.settings-plan-cta:disabled {
  cursor: default;
  filter: none;
  opacity: 0.72;
}

.settings-notice-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.settings-notice-list li {
  background: rgba(20, 27, 33, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
}

.settings-notice-list strong {
  font-size: 14px;
}

.settings-notice-list span {
  font-size: 12px;
}

.settings-disclaimer {
  background: #fffdf9;
  border-color: #eadfd0;
}

.settings-legal-summary strong {
  font-weight: 800;
}

.settings-legal-ref {
  font-size: 11px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.settings-legal-ref code {
  font-size: 10px;
}

.settings-disclaimer-list {
  color: #687268;
  display: grid;
  font-size: 13px;
  gap: 8px;
  line-height: 1.55;
  margin: 0;
  padding-left: 18px;
}

.settings-toggle-list {
  display: grid;
  gap: 8px;
}

.settings-toggle-row {
  align-items: center;
  background: #fbfcfa;
  border: 1px solid #edf0eb;
  border-radius: 10px;
  color: #202620;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 10px 12px;
  text-align: left;
  width: 100%;
}

.settings-toggle-row:hover {
  background: #f6fbf4;
  border-color: rgba(95, 160, 96, 0.35);
}

.settings-toggle-row strong {
  display: block;
  font-size: 14px;
}

.settings-toggle-row small {
  color: #687268;
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

.settings-toggle {
  background: #d7ddd6;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(39, 48, 39, 0.14);
  height: 24px;
  position: relative;
  transition: background 0.16s ease;
  width: 42px;
}

.settings-toggle::before {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(39, 48, 39, 0.2);
  content: "";
  height: 20px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 0.16s ease;
  width: 20px;
}

.settings-toggle.active {
  background: #5fa060;
}

.settings-toggle.active::before {
  transform: translateX(18px);
}

.store-list-panel,
.store-location-card {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(34, 42, 43, 0.05);
  overflow: hidden;
}

.store-list-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 640px;
}

.store-list-toolbar {
  background: #fbfcfa;
  border-bottom: 1px solid #e8ede6;
  display: grid;
  gap: 12px;
  padding: 14px 16px;
}

.store-list-guide {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.store-list-guide-disclaimer {
  display: block;
  margin-top: 4px;
}

.map-locate-button {
  background: #4f8c52;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  min-height: 40px;
  width: 100%;
}

.map-locate-button:hover {
  filter: brightness(0.96);
}

.map-store-detail-button {
  background: #5b7f8f;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  min-height: 34px;
  padding: 0 14px;
  text-align: center;
  white-space: nowrap;
}

.map-store-detail-button:hover {
  filter: brightness(0.96);
}

.result-card-actions .map-store-detail-button {
  justify-self: end;
}

.store-list-body {
  display: grid;
  gap: 0;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

.store-list-head {
  border-bottom: 1px solid #eef2ec;
  padding: 14px 16px 10px;
}

.store-list-scroll {
  max-height: 560px;
  overflow-y: auto;
  padding: 12px 16px 16px;
}

.store-aside {
  display: grid;
  gap: 12px;
}

.store-location-card {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 12px;
  padding: 16px;
}

.store-location-card h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 15px;
  margin: 0;
}

.store-location-card p {
  margin: 0;
}

.store-meta-hint {
  font-size: 11px;
  line-height: 1.45;
}

.store-location-card .ghost-button,
.store-location-card a.ghost-button {
  justify-self: start;
  min-height: 36px;
  padding: 0 14px;
  text-align: center;
}

.panel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-head span,
.meta-row span,
.history-row span,
.mini-history span {
  color: var(--muted);
  font-size: 12px;
}

.stack,
.results-list,
.timeline,
.wanted-list {
  display: grid;
  gap: 12px;
}

.trace-card,
.result-card,
.wanted-card,
.timeline-item,
.empty {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(34, 42, 43, 0.04);
  color: #202620;
  padding: 14px;
}

.trace-card,
.result-card,
.wanted-card {
  align-items: start;
  display: grid;
  gap: 12px;
  justify-content: stretch;
}

.result-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.result-card-near {
  background: #f3f9f1;
  border-color: #d4e6cf;
}

.store-distance-near {
  background: #e3f0df;
  border-radius: 999px;
  color: #3f6d42;
  font-weight: 700;
  padding: 2px 8px;
}

.wanted-card {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.trace-card {
  background: #fbfcfa;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.trace-card p,
.wanted-card p,
.timeline-item p {
  color: #6b7568;
  font-size: 13px;
  margin: 5px 0 0;
}

.wanted-card .text-button {
  align-self: start;
  min-height: 32px;
  padding: 0 10px;
}

.trace-card span {
  color: #3d7a4a;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
}

.quick-links {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.quick-links button {
  background: #fff;
  border: 1px solid #d8e0d6;
  border-radius: 10px;
  box-shadow: 0 2px 0 #e8ede6;
  color: #273027;
  font-size: 13px;
}

.quick-links button:hover {
  border-color: #b8d4bc;
}

.ghost-button,
.text-button {
  background: transparent;
  border: 1px solid #d8e0d6;
  color: var(--text);
}

.store-title,
.text-button {
  background: transparent;
  color: var(--text);
  min-height: auto;
  padding: 0;
  text-align: left;
}

.store-title {
  font-size: 18px;
}

.result-main {
  display: grid;
  gap: 10px;
}

.meta-row,
.history-row,
.mini-history,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.history-row span,
.mini-history span,
.alias-list span {
  background: #141b21;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
}

.store-card-recency {
  font-size: 13px;
  margin: 0;
}

.store-card-recency.fresh {
  color: var(--green);
}

.store-card-recency.stale {
  color: var(--muted);
}

.store-card-recency.catalog {
  color: #8a6814;
}

.store-card-recency.empty {
  color: var(--muted);
}

.store-card-items {
  color: var(--text);
  display: grid;
  gap: 4px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.store-card-items li::before {
  color: var(--muted);
  content: "・";
  margin-right: 2px;
}

.history-row .fresh,
.wanted-card .fresh {
  border-color: rgba(169, 200, 165, 0.55);
  color: var(--green);
}

.history-row .stale,
.wanted-card .stale {
  border-color: rgba(210, 192, 138, 0.55);
  color: var(--yellow);
}

.alias-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.observe-form,
.wanted-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  max-width: 640px;
  padding: 18px;
}

.observe-form textarea {
  min-height: 108px;
  resize: vertical;
}

.post-fieldset {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.post-fieldset[hidden] {
  display: none;
}

.post-field-legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.post-fieldset .post-field-legend {
  margin-bottom: 0;
}

.post-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.post-radio-option {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  grid-template-columns: none;
}

.post-radio-option input {
  accent-color: #4f8c52;
  height: 16px;
  margin: 0;
  width: 16px;
}

.post-store-field {
  display: grid;
  gap: 12px;
}

.post-chain-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-chain-chip {
  background: #fff;
  border: 1px solid #dce5d8;
  border-radius: 10px;
  color: #405040;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  min-height: 40px;
  padding: 8px 6px;
}

.post-chain-chip.active {
  background: #edf6ea;
  border-color: #93c85a;
  color: #2f5a32;
}

.post-store-select-label {
  display: grid;
  gap: 8px;
}

.post-store-hint {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.post-rights-card {
  background: #fbfcfa;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.post-rights-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

.post-rights-lead {
  font-size: 12px;
  line-height: 1.5;
  margin: -6px 0 0;
}

.post-rights-note,
.post-rights-warning {
  background: #fff8eb;
  border: 1px solid #efd9a8;
  border-radius: 8px;
  color: #7a5c1a;
  font-size: 12px;
  line-height: 1.55;
  margin: -4px 0 0;
  padding: 10px 12px;
}

.post-rights-warning {
  background: #fff0f0;
  border-color: #e8b4b4;
  color: #8a2a2a;
  margin: 0;
}

.post-rights-nested {
  border-left: 3px solid #dce5d8;
  display: grid;
  gap: 12px;
  margin-left: 4px;
  padding-left: 14px;
}

.post-fieldset-nested {
  gap: 8px;
}

.form-feedback {
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 10px 12px;
}

.form-feedback-error {
  background: #fff0f0;
  border: 1px solid #e8b4b4;
  color: #8a2a2a;
}

.form-feedback-success {
  background: #f0faf0;
  border: 1px solid #b4d8b4;
  color: #2a5a2a;
}

.post-history {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  max-width: 640px;
}

.post-history h3 {
  font-size: 15px;
  margin: 0;
}

.post-history-empty-card {
  background: #f7f1e6;
  border-radius: 14px;
  color: #6b5b4f;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 28px 20px 0;
  text-align: center;
}

.post-history-empty-copy {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
}

.post-history-empty-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.post-history-empty-lead {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.post-history-townscape {
  color: #8b7355;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.post-history-list {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 12px;
}

.post-history-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
}

.post-history-item time {
  font-size: 12px;
}

.post-incentives {
  background: #fff;
  border: 1px solid #e1e5df;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(34, 42, 43, 0.04);
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  max-width: 640px;
  padding: 12px 14px;
}

.post-incentives-head {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.post-incentives-head h3 {
  font-size: 14px;
  margin: 0;
}

.post-incentives-head .muted {
  font-size: 11px;
}

.post-incentives p {
  color: #52605d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.post-incentive-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-incentive-card {
  background: rgba(20, 27, 33, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.post-incentive-card strong {
  font-size: 15px;
}

.post-incentive-card p {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.post-incentive-rank {
  background: rgba(210, 192, 138, 0.16);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  justify-self: start;
  padding: 3px 8px;
}

.post-incentive-rank-a {
  background: rgba(169, 200, 165, 0.16);
  color: var(--green);
}

.post-incentive-rank-hall {
  background: rgba(139, 191, 203, 0.16);
  color: var(--cyan);
}

.post-image-field {
  display: grid;
  gap: 10px;
}

.post-image-label {
  color: #3a342c;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.post-image-required {
  color: #c98a2e;
  font-size: 13px;
  font-weight: 700;
  margin-left: 2px;
}

.required-badge {
  background: rgba(210, 192, 138, 0.16);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  margin-left: 4px;
  padding: 2px 7px;
}

.post-image-upload {
  align-items: center;
  background: #f7f1e6;
  border-radius: 14px;
  color: #6b5b4f;
  cursor: pointer;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 148px;
  padding: 22px 16px 18px;
  position: relative;
  text-align: center;
}

.post-image-upload:hover {
  background: #f3eadc;
}

.post-image-input {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.post-image-upload-icon {
  display: block;
  height: 28px;
  position: relative;
  width: 34px;
}

.post-image-upload-icon::before {
  border: 2px solid #8b7355;
  border-radius: 4px;
  content: "";
  height: 18px;
  left: 4px;
  position: absolute;
  top: 6px;
  width: 26px;
}

.post-image-upload-icon::after {
  background: #8b7355;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 13px;
  position: absolute;
  top: 11px;
  width: 8px;
}

.post-image-upload-cta {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.post-image-upload-note {
  color: #8b7a6c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  max-width: 22em;
}

.post-guidelines {
  border-top: 1px solid var(--line);
  display: grid;
  font-size: 12px;
  gap: 6px;
  line-height: 1.5;
  margin: 0;
  padding: 14px 0 0;
  padding-left: 18px;
}

.primary-large {
  min-height: 54px;
}

.observe-form .primary-large {
  background: #4f8c52;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  min-height: 38px;
  padding: 0 16px;
  width: 100%;
}

.observe-form .primary-large:hover {
  filter: brightness(0.96);
}

.check-row {
  align-items: center;
  display: flex;
}

.check-row input {
  min-height: auto;
  width: auto;
}

.timeline-item {
  background: rgba(20, 27, 33, 0.54);
  border-color: rgba(52, 65, 74, 0.82);
  display: grid;
  grid-template-columns: 18px 1fr;
}

.timeline-group {
  display: grid;
  gap: 10px;
}

.timeline-group h4 {
  color: var(--cyan);
  font-size: 13px;
  margin: 2px 0 0;
}

.timeline-dot {
  background: var(--pink);
  border-radius: 50%;
  height: 10px;
  margin-top: 5px;
  width: 10px;
}

.timeline-item a {
  color: var(--cyan);
  display: inline-block;
  margin-top: 6px;
}

.toast {
  background: #e3eef0;
  border-radius: 8px;
  bottom: 22px;
  box-shadow: var(--shadow);
  color: #11181d;
  font-weight: 800;
  left: 50%;
  padding: 12px 16px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 980px) {
  .map-layout,
  .results-layout,
  .store-layout,
  .wanted-layout,
  .settings-layout {
    grid-template-columns: 1fr;
  }

  .topbar,
  .store-hero {
    align-items: stretch;
    display: grid;
  }

  .usage-detail-grid {
    grid-template-columns: 1fr;
  }

  .usage-card-list {
    grid-template-columns: 1fr;
  }

  .search-combo {
    grid-template-columns: 1fr;
  }

  .store-list-panel {
    min-height: 520px;
  }

  .store-list-scroll {
    max-height: none;
  }
}

@media (max-width: 560px) {
  .main {
    padding: 16px;
  }

  .nav {
    gap: 4px;
    padding: 0 8px max(8px, env(safe-area-inset-bottom));
  }

  .nav-button {
    font-size: 9px;
    min-height: 48px;
    padding: 6px 1px 4px;
  }

  .nav-button-post {
    height: 54px;
    min-height: 54px;
    width: 54px;
  }

  .nav-post-plus {
    font-size: 22px;
  }

  .usage-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .usage-home-title {
    font-size: 26px;
  }

  .usage-card-list {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 4px;
    scroll-snap-type: none;
  }

  .usage-card {
    flex: initial;
    grid-template-columns: 112px minmax(0, 1fr);
    scroll-snap-align: start;
  }

  .quiet-panel {
    display: none;
  }

  .store-hero p {
    overflow-wrap: anywhere;
  }

  .topbar {
    gap: 14px;
    margin-bottom: 14px;
  }

  .map-topbar h2 {
    font-size: 25px;
  }

  .quiet-search {
    grid-template-columns: minmax(0, 1fr) 72px;
  }

  .topbar h2,
  .store-hero h2 {
    font-size: 23px;
  }

  .store-list-panel {
    min-height: 380px;
  }

  .context-panel {
    padding: 14px;
  }

  .map-layout {
    gap: 14px;
  }

  .quick-links {
    margin-top: 12px;
  }

  .trace-card,
  .result-card,
  .wanted-card,
  .map-store-ref-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .result-card-actions,
  .map-store-ref-actions {
    justify-items: start;
  }

  .result-card-actions .map-store-detail-button {
    justify-self: start;
  }

  .result-card .ghost-button {
    justify-self: start;
  }

  .observe-form,
  .wanted-form {
    max-width: 100%;
    min-width: 0;
  }

  .post-incentives {
    max-width: 100%;
  }

  .post-incentive-grid {
    grid-template-columns: 1fr;
  }

  .settings-plan-grid {
    grid-template-columns: 1fr;
  }
}
