/* gig.io — small supplements on top of Tailwind CDN */
button { cursor: pointer; }

/* ── hover states (the prebuilt tw.css ships no hover: utilities, so every
   button referencing one was inert). Re-declare the ones templates use. ── */
.hover\:bg-accent-dark:hover { background-color: #16b67e !important; }
.hover\:bg-brand-light:hover { background-color: #13395f !important; }
.hover\:bg-emerald-700:hover { background-color: #047857 !important; }
.hover\:brightness-95:hover { filter: brightness(.95); }

/* ── primary call-to-action — the "book / post / subscribe" actions. Skin only
   (colour, depth, motion); each button keeps its own padding / radius / width.
   Layered over the old `bg-accent text-brand` utilities, so it wins via
   specificity. Two looks by theme:
     • light: the fresh mint accent with navy text (bright, friendly)
     • dark:  a deep functional emerald with white text (reads great on dark) */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: #23e5a0 !important;   /* accent mint */
  color: #0a2540 !important;        /* brand navy */
  border: none;
  box-shadow: 0 1px 2px rgba(10, 37, 64, .10), 0 6px 16px rgba(35, 229, 160, .28);
}
.btn-primary svg { color: #0a2540; }
.btn-primary:hover {
  background: #16b67e !important;   /* accent-dark */
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(10, 37, 64, .12), 0 10px 24px rgba(22, 182, 126, .30);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(10, 37, 64, .16); }
.btn-primary:disabled, .btn-primary[disabled] {
  background: #9be8cd !important; color: #0a2540 !important;
  box-shadow: none; transform: none; cursor: not-allowed;
}

/* dark theme: deep emerald + white text */
html.dark .btn-primary { background: #0c8c5f !important; color: #fff !important; }
html.dark .btn-primary svg { color: #fff; }
html.dark .btn-primary:hover { background: #0a7d54 !important; }
html.dark .btn-primary:disabled, html.dark .btn-primary[disabled] {
  background: #14543b !important; color: #9fd9c3 !important;
}

/* cookie-consent banner: pin to the bottom, but lift above the mobile bottom
   nav (sm:hidden, ~3.25rem tall) on small screens so the two never overlap. */
/* Cookie consent — a clear corner card (never blocks the page; only an explicit
   choice dismisses it, so clicking elsewhere never closes it). */
#cookie-banner {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 80;
  width: min(92vw, 25rem); background: #fff; color: #0f172a;
  border: 1px solid #e2e8f0; border-radius: 16px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, .28); padding: 18px;
  animation: cc-in .25s ease-out;
}
@media (max-width: 639px) { #cookie-banner { left: .75rem; right: .75rem; width: auto; bottom: 4rem; } }
html.dark #cookie-banner { background: #111a2e; border-color: #26344f; color: #e2e8f0; }
@keyframes cc-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.cc-head h2 { font-size: 1rem; font-weight: 800; }
.cc-text { font-size: .82rem; color: #64748b; line-height: 1.5; margin-bottom: 14px; }
html.dark .cc-text { color: #94a3b8; }
.cc-text a { color: #16b67e; font-weight: 600; white-space: nowrap; }
.cc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.cc-btn { font-size: .82rem; font-weight: 700; border-radius: 10px; padding: .55rem .95rem; cursor: pointer; border: 1px solid transparent; }
.cc-ghost { background: #f1f5f9; color: #475569; }
.cc-ghost:hover { background: #e2e8f0; }
html.dark .cc-ghost { background: #1b2740; color: #cbd5e1; }
.cc-link { background: transparent; color: #16b67e; padding: .55rem .5rem; }
.cc-link:hover { text-decoration: underline; }
/* category list */
.cc-cats { display: flex; flex-direction: column; gap: 12px; margin: 4px 0 14px; max-height: 46vh; overflow: auto; }
.cc-cat { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cc-cat-h { font-weight: 700; font-size: .85rem; }
.cc-cat-b { font-size: .75rem; color: #64748b; line-height: 1.45; margin-top: 2px; }
html.dark .cc-cat-b { color: #94a3b8; }
.cc-always { font-size: .72rem; font-weight: 700; color: #16b67e; white-space: nowrap; padding-top: 3px; }
.cc-none { font-size: .72rem; font-weight: 600; color: #94a3b8; white-space: nowrap; padding-top: 3px; }
.cc-disabled { opacity: .6; }
/* toggle switch */
.cc-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: none; }
.cc-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cc-slider { position: absolute; inset: 0; background: #cbd5e1; border-radius: 999px; transition: background .2s; cursor: pointer; }
.cc-slider::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 999px; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.cc-switch input:checked + .cc-slider { background: #16b67e; }
.cc-switch input:checked + .cc-slider::before { transform: translateX(18px); }
.cc-switch input:focus-visible + .cc-slider { outline: 2px solid #16b67e; outline-offset: 2px; }

/* profile avatar: always a crisp circle (never an oval when the nav is tight),
   with a themed ring for contrast against the header */
.avatar {
  width: 2.25rem; height: 2.25rem; flex: 0 0 auto; border-radius: 9999px;
  object-fit: cover; box-shadow: 0 0 0 2px rgba(255, 255, 255, .35);
}
html.dark .avatar { box-shadow: 0 0 0 2px rgba(148, 163, 184, .45); }
/* initials stay dark-navy on the accent circle in both themes (high contrast) */
.avatar-initial { color: #0a2540 !important; }

/* hide the native <details> disclosure marker so summaries align with nav links */
.no-marker { list-style: none; }
.no-marker::-webkit-details-marker { display: none; }
.no-marker::marker { content: ""; }

/* ── dark theme ───────────────────────────────────────────────────────────────
   The prebuilt Tailwind CSS has no dark: variants, so we override the common
   colour utilities under html.dark instead. Brand/accent colours stay as-is. */
.theme-sun { display: none; }
html.dark .theme-moon { display: none; }
html.dark .theme-sun { display: inline-block; }
.theme-sun-label { display: none; }
html.dark .theme-moon-label { display: none; }
html.dark .theme-sun-label { display: inline; }

html.dark { color-scheme: dark; }
html.dark body { background-color: #0b1220; color: #e2e8f0; }

html.dark .bg-white { background-color: #111a2e !important; }
html.dark .bg-slate-50 { background-color: #0f1830 !important; }
html.dark .bg-slate-100 { background-color: #1b2740 !important; }
html.dark .bg-slate-200 { background-color: #243150 !important; }

html.dark .text-slate-900, html.dark .text-slate-800, html.dark .text-brand { color: #e8eef7 !important; }
html.dark .text-slate-700, html.dark .text-slate-600 { color: #cbd5e1 !important; }
html.dark .text-slate-500, html.dark .text-slate-400 { color: #94a3b8 !important; }
html.dark .text-slate-300 { color: #64748b !important; }

html.dark .border, html.dark .border-t, html.dark .border-b, html.dark .border-l, html.dark .border-r,
html.dark .border-slate-100, html.dark .border-slate-200, html.dark .border-slate-300 { border-color: #26344f !important; }
html.dark .divide-slate-100 > :not([hidden]) ~ :not([hidden]) { border-color: #26344f !important; }

html.dark .hover\:bg-slate-50:hover, html.dark .hover\:bg-slate-100:hover { background-color: #1b2740 !important; }

/* form controls + custom dropdowns + popups */
html.dark .field, html.dark input, html.dark textarea, html.dark select,
html.dark .nicesel-btn { background-color: #0f1830 !important; border-color: #2a3a5a !important; color: #e2e8f0; }
html.dark input::placeholder, html.dark textarea::placeholder { color: #64748b; }
html.dark .nicesel-menu, html.dark .mapboxgl-popup-content { background: #111a2e !important; border-color: #26344f !important; color: #e2e8f0; }
html.dark .nicesel-opt { color: #cbd5e1; }
html.dark .nicesel-opt:hover, html.dark .nicesel-opt.active { background: #1b2740; }
html.dark .nicesel-opt[aria-selected="true"] { background: #143226; color: #6ee7b7; }

html.dark .shadow, html.dark .shadow-sm, html.dark .shadow-md, html.dark .shadow-lg, html.dark .shadow-xl, html.dark .shadow-2xl {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5) !important;
}

/* soft button ("Use my location") + slider tracks in dark mode */
html.dark .btn-soft { background: #0f1830; border-color: #2a3a5a; color: #e2e8f0; }
html.dark .btn-soft:hover { background: #1b2740; border-color: #3a4a6a; }
html.dark .price-range .pr-track, html.dark .range1 .pr-track { background: #56688a; }
html.dark .price-range .pr-fill, html.dark .range1 .pr-fill { background: #2ee6a6; }
html.dark .price-range input[type="range"]::-webkit-slider-thumb,
html.dark .range1 input[type="range"]::-webkit-slider-thumb { background: #e8eef7; border-color: #2ee6a6; }
html.dark .price-range input[type="range"]::-moz-range-thumb,
html.dark .range1 input[type="range"]::-moz-range-thumb { background: #e8eef7; border-color: #2ee6a6; }

a, button { transition: color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .12s ease; }
img { -webkit-user-drag: none; }
.line-clamp-1 { display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden; }
html { scroll-behavior: smooth; }
::-webkit-scrollbar { height: 8px; width: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
/* higher specificity + !important so these beat mapbox-gl.css (loaded after) */
.mapboxgl-popup .mapboxgl-popup-content { border-radius: 16px !important; padding: 0 !important; overflow: hidden !important; border: 1px solid #e2e8f0; box-shadow: 0 10px 34px rgba(2,6,23,.28); }
.mapboxgl-popup .mapboxgl-popup-content img { border-radius: 0; }
/* visible, legible close button (dark pill over the image) */
.mapboxgl-popup-close-button {
  font-size: 0; line-height: 0; width: 26px; height: 26px; top: 8px; right: 8px;
  border-radius: 999px; background: rgba(10,37,64,.65); color: #fff; display: grid; place-items: center;
}
.mapboxgl-popup-close-button::before { content: "\00d7"; font-size: 18px; line-height: 1; color:#fff; }
.mapboxgl-popup-close-button:hover { background: rgba(10,37,64,.9); }

/* map price markers: icon chip + price */
.map-pin { display:inline-flex; align-items:center; gap:6px; background:#fff; border:1px solid #e2e8f0;
  border-radius:999px; padding:3px 11px 3px 3px; box-shadow:0 2px 8px rgba(2,6,23,.18); cursor:pointer;
  font-size:12px; font-weight:700; color:#0a2540; white-space:nowrap; transition:transform .1s, box-shadow .1s; line-height:1; }
.map-pin:hover { transform:translateY(-1px); }
.map-pin.is-active { border-color:#23e5a0; box-shadow:0 0 0 2px #23e5a0, 0 2px 8px rgba(2,6,23,.18); }
.map-pin .ic { width:24px; height:24px; border-radius:999px; background:#0a2540; color:#23e5a0; display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto; }
.map-pin .ic svg { width:14px; height:14px; display:block; }
.map-pin .pr { color:#16b67e; display:inline-flex; align-items:center; }

/* popup card */
.map-card { width:220px; display:block; text-decoration:none; color:#0f172a; }
.map-card img { width:100%; height:120px; object-fit:cover; display:block; background:#f1f5f9; }
.map-card .body { padding:9px 11px; }
.map-card .t { font-weight:600; font-size:13px; }
.map-card .meta { font-size:11px; color:#64748b; margin-top:1px; }
.map-card .p { color:#16b67e; font-weight:700; font-size:12px; margin-top:4px; display:flex; align-items:center; gap:5px; }
.map-card .p .ic { width:18px;height:18px;border-radius:999px;background:#e9fbf3;display:grid;place-items:center;color:#16b67e; }

/* cluster bubble (declutters overlapping markers) */
.map-cluster { display:flex; align-items:center; justify-content:center; min-width:34px; height:34px; padding:0 9px;
  border-radius:999px; background:#0a2540; color:#fff; font-weight:700; font-size:13px; border:3px solid #fff;
  box-shadow:0 2px 10px rgba(2,6,23,.30); cursor:pointer; }
.map-cluster:hover { background:#16b67e; }

/* hide the Mapbox logo + attribution visually, but keep them in the DOM
   (attribution must remain present for data-attribution compliance, e.g. Japan) */
.mapboxgl-ctrl-logo, .mapboxgl-ctrl-attrib { display:none !important; }

/* mobile: show the in-view list as a slide-up bottom sheet */
@media (max-width: 639px) {
  .map-sheet { position:fixed; left:0; right:0; bottom:0; top:auto; height:72vh; z-index:50;
    border-top-left-radius:18px; border-top-right-radius:18px; box-shadow:0 -14px 40px rgba(2,6,23,.28);
    transform:translateY(100%); transition:transform .26s ease; }
  .map-sheet.sheet-open { transform:translateY(0); }
  .map-sheet::before { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%);
    width:38px; height:4px; border-radius:999px; background:#cbd5e1; }
  body.sheet-lock { overflow:hidden; }
}
.map-card .p .ic svg { width:11px;height:11px; }

/* side list rows (larger, richer service boxes) */
.map-li { display:flex; gap:12px; padding:14px 16px; border-bottom:1px solid #f1f5f9; cursor:pointer; }
.map-li:hover, .map-li.is-active { background:#f0fdf9; }
.map-li img, .map-li .map-li-noimg { width:80px; height:80px; border-radius:12px; object-fit:cover; flex:0 0 auto; background:#f1f5f9; }
.map-li .t { font-weight:600; font-size:15px; line-height:1.3; }
.map-li .meta { font-size:12px; color:#64748b; margin-top:2px; }
.map-li .p { color:#16b67e; font-weight:800; font-size:14px; margin-top:4px; }

/* mobile bottom-sheet open state (beats Tailwind's .hidden) */
.sheet-open { display: flex !important; }

/* fancy upload dropzone */
.dz { border: 2px dashed #cbd5e1; border-radius: 14px; padding: 18px; background: #f8fafc; cursor: pointer; transition: border-color .15s, background .15s; }
.dz:hover { border-color: #23e5a0; background: #f0fdf9; }
.dz.dz-over { border-color: #16b67e; background: #e9fbf3; }
.dz-prompt { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; pointer-events: none; }
.dz-previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 12px; }
.dz-previews:empty { margin-top: 0; }
.dz-item { position: relative; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: #e2e8f0; }
.dz-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dz-item button { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 999px; background: rgba(10,37,64,.75); color: #fff; font-size: 13px; line-height: 1; display: grid; place-items: center; }
.dz-item button:hover { background: #e11d48; }

/* search filters: sidebar on wide desktop; smooth bottom-sheet below xl */
@media (max-width: 1279px) {
  .filters-panel {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto; margin: 0 auto;
    width: 100%; max-width: 560px; max-height: 85vh; z-index: 70; overflow-y: auto;
    border-radius: 20px 20px 0 0;            /* rounded top, flush bottom (no lower border) */
    transform: translateY(100%); transition: transform .24s ease; display: block;
  }
  .filters-panel.filters-open { transform: translateY(0); box-shadow: 0 -12px 40px rgba(2,6,23,.28); }
}

/* categories mega-menu: rotate the chevron when open, subtle drop-in */
#cat-btn[aria-expanded="true"] .chev { transform: rotate(90deg); }
#cat-panel:not(.hidden) { animation: catdrop .14s ease-out; }
@keyframes catdrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* horizontally-scrollable chip rows without a visible scrollbar */
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* visible keyboard focus for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid #16b67e;
  outline-offset: 2px;
  border-radius: 4px;
}

/* dual-thumb price range slider (search filters) */
.price-range { position: relative; height: 26px; cursor: pointer; }
.price-range .pr-track,
.price-range .pr-fill { position: absolute; top: 11px; height: 4px; border-radius: 999px; }
.price-range .pr-track { left: 0; right: 0; background: #e2e8f0; }
.price-range .pr-fill { background: #16b67e; }
/* both range inputs overlap; only their thumbs are interactive, so a click on
   the bare track falls through to the container (handled in filters.js) */
.price-range input[type="range"] {
  position: absolute; top: 0; left: 0; width: 100%; height: 26px; margin: 0; z-index: 3;
  -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none;
}
.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; pointer-events: auto;
  width: 20px; height: 20px; border-radius: 999px; background: #fff;
  border: 2px solid #16b67e; box-shadow: 0 1px 3px rgba(2, 6, 23, .25); cursor: grab;
}
.price-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto; width: 20px; height: 20px; border-radius: 999px; background: #fff;
  border: 2px solid #16b67e; box-shadow: 0 1px 3px rgba(2, 6, 23, .25); cursor: grab;
}
.price-range input[type="range"]::-webkit-slider-runnable-track { background: transparent; border: none; }
.price-range input[type="range"]::-moz-range-track { background: transparent; border: none; }
.price-range input[type="range"]:focus { outline: none; }
.price-range input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2px solid #16b67e; outline-offset: 2px; }

/* single-thumb range (radius/distance), same look as the price slider */
.range1 { position: relative; height: 26px; }
.range1 .pr-track,
.range1 .pr-fill { position: absolute; top: 11px; height: 4px; border-radius: 999px; }
.range1 .pr-track { left: 0; right: 0; background: #e2e8f0; }
.range1 .pr-fill { left: 0; background: #16b67e; }
.range1 input[type="range"] {
  position: absolute; top: 0; left: 0; width: 100%; height: 26px; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.range1 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 999px; background: #fff;
  border: 2px solid #16b67e; box-shadow: 0 1px 3px rgba(2, 6, 23, .25); cursor: pointer;
}
.range1 input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 999px; background: #fff;
  border: 2px solid #16b67e; box-shadow: 0 1px 3px rgba(2, 6, 23, .25); cursor: pointer;
}
.range1 input[type="range"]::-webkit-slider-runnable-track { background: transparent; border: none; }
.range1 input[type="range"]::-moz-range-track { background: transparent; border: none; }
.range1 input[type="range"]:focus { outline: none; }

/* polished form fields (daisyUI-style; the build can't add the daisyUI plugin
   here, so this hand-rolls the same look) */
.field {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;          /* slate-200 */
  border-radius: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #0f172a;                     /* slate-900 */
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field::placeholder { color: #94a3b8; }
.field:hover { border-color: #cbd5e1; }
.field:focus, .field:focus-visible {
  outline: none;
  border-color: #16b67e;              /* accent */
  box-shadow: 0 0 0 3px rgba(22, 182, 126, .16);
  background: #fff;
}
/* selects: hide native arrow, draw our own chevron */
select.field {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  padding-right: 2rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
}
select.field::-ms-expand { display: none; }
/* custom dropdown (daisyUI-style) that enhances native .field selects on
   pointer devices; the native select stays in the DOM for form submit + change
   events, and on touch the native picker is kept (it's better there). */
.nicesel { position: relative; }
.nicesel > select { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nicesel-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: .6rem; padding: .55rem .75rem;
  font-size: .875rem; color: #0f172a; text-align: left; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.nicesel-btn:hover { border-color: #cbd5e1; }
.nicesel.open .nicesel-btn { border-color: #16b67e; box-shadow: 0 0 0 3px rgba(22, 182, 126, .16); }
.nicesel-btn .nicesel-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nicesel-btn svg { flex: none; width: 1rem; height: 1rem; color: #94a3b8; transition: transform .15s ease; }
.nicesel.open .nicesel-btn svg { transform: rotate(180deg); }
.nicesel-menu {
  position: absolute; z-index: 60; left: 0; right: 0; margin-top: .35rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: .75rem;
  box-shadow: 0 14px 36px rgba(2, 6, 23, .18); padding: .3rem; max-height: 18rem; overflow: auto;
}
.nicesel-menu[hidden] { display: none; }
.nicesel-opt {
  padding: .5rem .6rem; border-radius: .5rem; font-size: .875rem; color: #334155;
  cursor: pointer; white-space: nowrap;
}
.nicesel-opt:hover, .nicesel-opt.active { background: #f1f5f9; }
.nicesel-opt[aria-selected="true"] { background: #ecfdf5; color: #065f46; font-weight: 600; }
.nicesel-group { padding: .5rem .6rem .2rem; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #94a3b8; }

/* loading skeletons (shimmer) */
.skeleton { position: relative; overflow: hidden; background: #eef2f7; border-radius: 8px; }
.skeleton::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  animation: gig-shimmer 1.3s infinite;
}
@keyframes gig-shimmer { 100% { transform: translateX(100%); } }
.skel-row { display: flex; gap: 10px; padding: 10px 14px; align-items: center; }
.skel-row .s-img { width: 54px; height: 54px; border-radius: 10px; flex: none; }
.skel-row .s-line { height: 11px; }

/* soft pill button (e.g. "Use my location") */
.btn-soft {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #fff;
  transition: border-color .15s ease, background-color .15s ease;
  cursor: pointer;
}
.btn-soft:hover { background: #f8fafc; border-color: #cbd5e1; }
