:root {
    --bg: #f4f6f8;
    --surface: #ffffff;
    --surface-soft: #eef3f6;
    --text: #18212d;
    --muted: #657386;
    --line: #d8e0e8;
    --accent: #0d7c66;
    --accent-strong: #075f51;
    --danger: #b42318;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}
.topbar-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--accent);
    flex: 0 0 auto;
}
.brand-mark svg,
.brand-mark img { width: 42px; height: 42px; display: block; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.brand strong { font-size: 22px; letter-spacing: 0; line-height: 1; }
.brand-copy span { font-size: 13px; color: var(--muted); }
.header-search {
    flex: 1 1 380px;
    max-width: 520px;
    min-width: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(24, 33, 45, .04);
}
.header-search input {
    min-height: 40px;
    width: 100%;
    border: 0;
    padding: 0 14px;
    background: transparent;
    font-size: 14px;
}
.header-search button {
    min-height: 40px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    padding: 0 14px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}
.header-search button:hover {
    background: var(--accent-strong);
}
.nav {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    color: var(--muted);
}
.mobile-nav-toggle { display: none; }
.nav-group {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 3px;
}
.nav-group a,
.nav-group span {
    min-width: 34px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.nav-group a:hover {
    text-decoration: none;
    color: var(--accent-strong);
    background: var(--surface-soft);
}
.nav-group .is-active {
    background: var(--accent);
    color: #fff;
}
.nav-action-link .nav-action-label,
.nav-action-link .nav-action-count,
.nav-action-link .nav-action-icon {
    min-width: 0;
    min-height: auto;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.nav-action-link {
    gap: 6px;
}
.nav-action-icon {
    display: none;
    font-size: 17px;
    line-height: 1;
}
.nav-action-count {
    font-variant-numeric: tabular-nums;
}
.header-currency,
.header-language {
    width: auto;
    min-height: 28px;
    border: 0;
    border-radius: 999px;
    padding: 0 28px 0 10px;
    background-color: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.login-nudge {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    width: min(320px, calc(100vw - 32px));
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(24, 33, 45, .18);
    z-index: 12;
}
.login-nudge[hidden] { display: none; }
.login-nudge::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
    transform: rotate(45deg);
}
.login-nudge strong {
    display: block;
    margin: 0 28px 4px 0;
    font-size: 15px;
    line-height: 1.25;
}
.login-nudge p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}
.login-nudge-action {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 14px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.login-nudge-action:hover {
    background: var(--accent-strong);
    color: #fff;
    text-decoration: none;
}
.login-nudge-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.login-nudge-close:hover {
    background: var(--surface-soft);
    color: var(--text);
}
.card-personal-actions {
    display: flex;
    gap: 8px;
    margin: 8px 0 0;
}
.card-personal-action {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.card-personal-action:hover,
.card-personal-action:focus-visible {
    color: var(--text);
    text-decoration-color: currentColor;
}
.nearby-location-button {
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    background: var(--surface-soft);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.nearby-location-button:disabled { opacity: .6; cursor: wait; }
.nearby-location-status { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.hero { padding: 24px 0 16px; }
.hero h1 { margin: 0 0 8px; font-size: 28px; letter-spacing: 0; }
.hero p { margin: 0; color: var(--muted); }
.hero .city-alias-hint { margin-top: 6px; font-size: 14px; }
.hero .city-alias-hint span { color: var(--text); font-weight: 700; }
@media (min-width: 681px) and (max-width: 980px) {
    .topbar-inner {
        flex-wrap: wrap;
    }
    .header-search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
    }
    .nav {
        margin-left: auto;
    }
}
.home-hero {
    background: #eef1f3;
    padding: 50px 0 54px;
    border-bottom: 1px solid var(--line);
}
.home-hero-copy {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
    text-align: center;
}
.home-hero-copy h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: 0;
}
.home-hero-copy p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}
.home-search {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(210px, 320px) 150px;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(24, 33, 45, .08);
}
.home-search-field,
.home-location-select {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
    color: var(--muted);
}
.home-search input,
.home-search select {
    border: 0;
    border-radius: 0;
    min-height: 70px;
    padding: 0;
    font-size: 18px;
    background: transparent;
}
.home-search button {
    min-height: 72px;
    border-radius: 0;
    font-size: 17px;
}
.home-location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}
.home-section {
    padding: 46px 0 58px;
}
.home-section-head {
    text-align: center;
    margin-bottom: 28px;
}
.home-section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: 0;
}
.home-section-head p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
}
.category-showcase {
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 18px;
}
.category-showcase h3 {
    margin: 0 0 14px;
    font-size: 20px;
    letter-spacing: 0;
}
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px 22px;
}
.subcategory-group {
    min-width: 0;
    display: grid;
    gap: 8px;
}
.subcategory-group strong { font-size: 15px; }
.subcategory-group a {
    color: var(--text);
    overflow-wrap: anywhere;
}
.subcategory-group a::before {
    content: "›";
    color: var(--accent);
    margin-right: 7px;
    font-weight: 800;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 22px 18px;
}
.category-tile {
    min-height: 142px;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 12px;
    color: var(--text);
    text-align: center;
}
.category-tile:hover {
    text-decoration: none;
    color: var(--accent-strong);
}
.category-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #d9fbf4;
    border: 1px solid rgba(13, 124, 102, .16);
    font-size: 32px;
    font-weight: 800;
    box-shadow: inset 0 -10px 24px rgba(13, 124, 102, .08);
}
.category-tile:nth-child(4n + 2) .category-icon { background: #fff2c2; }
.category-tile:nth-child(4n + 3) .category-icon { background: #dce7ff; }
.category-tile:nth-child(4n + 4) .category-icon { background: #ffe0d6; }
.category-tile strong {
    max-width: 150px;
    font-size: 15px;
    line-height: 1.25;
}
.search-panel {
    margin: 18px 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(24, 33, 45, .06);
}
.searchbar {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(220px, 1fr) 140px;
    gap: 0;
    margin: 0;
}
.searchbar select,
.searchbar input,
.searchbar button {
    min-height: 62px;
    border: 0;
    border-radius: 0;
}
.searchbar select,
.searchbar input {
    border-right: 1px solid var(--line);
    font-size: 16px;
}
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    padding: 14px;
    border-top: 1px solid var(--line);
    background: #f9fbfc;
}
.city-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.city-filters strong {
    font-size: 13px;
    color: var(--muted);
    margin-right: 4px;
}
.city-place-selector {
    display: grid;
    gap: 8px;
    min-width: min(100%, 320px);
}
.city-place-selector > strong,
.city-selector-group legend {
    font-size: 13px;
    color: var(--muted);
}
.city-selector-details {
    position: relative;
    width: min(100%, 520px);
}
.city-selector-details summary {
    min-height: 41px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    list-style: none;
}
.city-selector-details summary::-webkit-details-marker { display: none; }
.city-selector-details summary::after {
    content: "⌄";
    color: var(--muted);
    font-weight: 800;
}
.city-selector-details[open] summary::after {
    transform: rotate(180deg);
}
.city-selector-details summary span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.city-selector-details summary small {
    flex: 0 0 auto;
    color: var(--accent);
    font-weight: 800;
}
.city-selector-panel {
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    display: grid;
    gap: 10px;
    max-height: 360px;
    overflow: auto;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
}
.city-selector-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    padding-bottom: 2px;
}
.city-selector-search input {
    width: 100%;
    min-height: 39px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 10px;
    font: inherit;
}
.city-selector-search button {
    min-height: 39px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7fafc;
    color: var(--text);
    padding: 0 10px;
    font: inherit;
    font-weight: 800;
}
.city-selector-group {
    border: 0;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.city-selector-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.location-place-group {
    margin-top: 12px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
}
.location-place-options .location-place-option {
    padding-left: calc(8px + (var(--location-depth, 1) - 1) * 14px);
}
.city-selector-empty {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.city-option {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.city-option input { margin: 0; }
.radius-filter {
    display: grid;
    gap: 6px;
    width: min(100%, 220px);
}
.radius-filter span {
    font-size: 13px;
    color: var(--muted);
}
.price-filter {
    display: grid;
    grid-template-columns: minmax(84px, 1fr) minmax(84px, 1fr);
    gap: 6px 8px;
    width: min(100%, 250px);
}
.price-filter > span {
    grid-column: 1 / -1;
    font-size: 13px;
    color: var(--muted);
}
.price-filter small {
    font-size: 12px;
    font-weight: 800;
    color: var(--text);
}
.price-filter label {
    min-width: 0;
}
.price-filter input {
    width: 100%;
    min-height: 39px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    color: var(--text);
    font: inherit;
}
.condition-filter {
    display: grid;
    gap: 6px;
    width: min(100%, 190px);
}
.condition-filter span {
    font-size: 13px;
    color: var(--muted);
}
.condition-filter select {
    width: 100%;
    min-height: 39px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    color: var(--text);
    font: inherit;
}
.filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}
.quick-filter {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}
.quick-filter input { margin: 0; }
.search-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 8px 0 18px;
    color: var(--muted);
    font-size: 14px;
}
.search-summary strong {
    color: var(--text);
    font-size: 16px;
}
.results-sort-form {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-left: auto;
}
.results-sort-form label {
    display: grid;
    gap: 4px;
}
.results-sort-form span {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}
.results-sort-form select {
    min-height: 38px;
    min-width: 220px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 0 34px 0 10px;
    color: var(--text);
    font: inherit;
}
.results-sort-form noscript button {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    padding: 0 12px;
    font-weight: 800;
    cursor: pointer;
}
.results-sort-form noscript button:hover {
    background: var(--accent-strong);
}
.search-map-panel {
    margin: -4px 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.search-map-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}
.search-map-header div {
    display: grid;
    gap: 4px;
}
.search-map-header strong {
    font-size: 16px;
    color: var(--text);
}
.search-map-header span,
.search-map-header small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}
.search-map-header small {
    flex: 0 0 auto;
    font-weight: 800;
    text-transform: uppercase;
}
.search-map-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    align-items: center;
}
.search-map-toggle {
    border: 1px solid rgba(31, 122, 100, 0.24);
    border-radius: 8px;
    background: #eef8f4;
    color: #17614f;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    padding: 9px 11px;
    white-space: nowrap;
}
.search-map-toggle:hover,
.search-map-toggle:focus-visible {
    background: #e0f1eb;
    border-color: rgba(31, 122, 100, 0.42);
}
.search-map-shell {
    position: relative;
    min-height: 260px;
    background: #eef3f0;
}
.search-map-shell[hidden] {
    display: none;
}
.search-map {
    height: min(52vh, 360px);
    min-height: 260px;
    width: 100%;
}
.search-map-count-marker {
    border-radius: 50%;
    background: #1f7a64;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 10px 22px rgba(16, 37, 48, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    box-sizing: border-box;
}
.search-map-count-marker span {
    display: block;
    min-width: 0;
    text-align: center;
}
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha-disclosure {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}
.recaptcha-disclosure a {
    color: inherit;
}
.search-map-popup {
    display: grid;
    gap: 6px;
    min-width: 190px;
}
.search-map-popup strong {
    font-size: 15px;
}
.search-map-popup span {
    color: var(--muted);
    font-size: 12px;
}
.search-map-popup ul {
    display: grid;
    gap: 5px;
    margin: 2px 0 0;
    padding-left: 16px;
}
.search-map-popup a {
    color: #1f5fa8;
    font-weight: 700;
}
.search-map-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}
.search-map-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    background: #f7faf9;
}
.load-more,
.pagination-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 26px 0 8px;
}
.pagination-link,
.pagination-current {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}
.pagination-current {
    background: var(--surface-soft);
    color: var(--muted);
}
.site-footer {
    margin-top: 54px;
    border-top: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
}
.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(160px, 1fr));
    gap: 28px;
    padding: 34px 0 28px;
}
.footer-brand {
    color: var(--text);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}
.footer-column {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
}
.footer-column h2 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: 14px;
    letter-spacing: 0;
}
.footer-column p,
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-column a {
    color: var(--muted);
}
.footer-column a:hover {
    color: var(--accent-strong);
}
.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 14px 0 18px;
    font-size: 13px;
}
.content-page {
    padding: 28px 0 8px;
}
.content-panel {
    max-width: 860px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(22px, 4vw, 42px);
    box-shadow: 0 14px 30px rgba(24, 33, 45, .05);
}
.content-header h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: 0;
}
.content-header p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}
.content-sections {
    display: grid;
    gap: 24px;
    margin-top: 30px;
}
.content-sections h2 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: 0;
}
.content-sections p {
    margin: 0;
    color: var(--muted);
}
.content-sections ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}
.content-sections li + li {
    margin-top: 6px;
}
input[type="search"], input[type="email"], input[type="password"], input[type="text"], input:not([type]), select, textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}
textarea { resize: vertical; }
select { cursor: pointer; }
button, .button {
    min-height: 48px;
    border: 1px solid var(--accent);
    border-radius: 7px;
    padding: 0 16px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.secondary-button {
    background: #fff;
    color: var(--accent-strong);
}
.auth-page {
    min-height: calc(100vh - 64px);
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 34px 0 64px;
}
.auth-panel {
    width: min(100%, 460px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 18px 42px rgba(24, 33, 45, .08);
}
.auth-copy h1 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 0;
}
.auth-copy p,
.auth-switch {
    margin: 0;
    color: var(--muted);
}
.auth-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}
.auth-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}
.auth-form small {
    color: var(--muted);
    font-weight: 600;
}
.auth-form input,
.auth-form textarea {
    width: 100%;
}
.auth-account-type {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}
.auth-account-type legend {
    grid-column: 1 / -1;
    margin-bottom: 6px;
    font-weight: 800;
}
.auth-account-type label {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}
.auth-account-type input {
    width: auto;
    margin: 0;
}
.auth-store-fields {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}
.auth-inline-link {
    justify-self: start;
    color: var(--accent-strong);
    font-weight: 800;
    text-decoration: none;
}
.auth-muted {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 700;
}
.auth-provider-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.auth-provider-list button,
.auth-provider-button {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--muted);
    font-weight: 800;
}
.auth-provider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--accent-strong);
    background: #fff;
    cursor: pointer;
}
.auth-provider-list button {
    cursor: not-allowed;
}
.auth-provider-primary {
    border-color: rgba(18, 126, 103, .28);
    background: rgba(18, 126, 103, .08);
}
.auth-provider-hint {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.auth-error {
    border: 1px solid rgba(180, 35, 24, .22);
    border-radius: 8px;
    background: rgba(180, 35, 24, .08);
    padding: 10px 12px;
    color: var(--danger);
    font-weight: 700;
}
.auth-switch {
    margin-top: 18px;
}
.account-page {
    padding: 28px 0 64px;
}
.account-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.account-hero h1 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0;
}
.account-hero p {
    margin: 0;
    max-width: 680px;
    color: var(--muted);
    font-weight: 700;
}
.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    align-items: start;
    gap: 16px;
}
.account-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 16px 38px rgba(24, 33, 45, .06);
}
.account-providers {
    grid-column: 1 / -1;
}
.account-billing {
    grid-column: 1 / -1;
}
.account-seller-listings {
    grid-column: 1 / -1;
}
.account-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.account-panel-head h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0;
}
.account-panel-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}
.account-form {
    display: grid;
    align-content: start;
    gap: 14px;
}
.account-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}
.account-language-set {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}
.account-language-set legend {
    width: 100%;
    margin-bottom: 2px;
    color: var(--muted);
    font-weight: 800;
}
.account-language-set label {
    display: inline-flex;
    grid-auto-flow: column;
    align-items: center;
    gap: 6px;
    width: auto;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
}
.account-stats {
    display: grid;
    gap: 10px;
}
.account-panel-note {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 700;
}
.account-stats a,
.account-provider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    color: var(--text);
    text-decoration: none;
}
.account-stats span,
.account-provider p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}
.account-stats strong {
    font-size: 24px;
    line-height: 1;
}
.account-provider + .account-provider {
    margin-top: 10px;
}
.account-provider strong {
    display: block;
    margin-bottom: 4px;
}
.account-provider > span,
.account-provider-action {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 6px 9px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.account-provider.is-connected > span {
    background: rgba(18, 126, 103, .1);
    color: var(--accent-strong);
}
.account-provider-action {
    color: var(--accent-strong);
    background: rgba(18, 126, 103, .08);
}
.account-billing-notice {
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid rgba(18, 126, 103, .2);
    border-radius: 8px;
    background: rgba(18, 126, 103, .06);
    color: var(--text);
    font-weight: 700;
}
.account-billing-notice strong {
    margin-left: 8px;
}
.account-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.account-plan {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: var(--surface-soft);
}
.account-plan.is-current {
    border-color: rgba(18, 126, 103, .42);
    background: rgba(18, 126, 103, .06);
}
.account-plan-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}
.account-plan h3,
.account-payment-list h3 {
    margin: 0;
    font-size: 17px;
    letter-spacing: 0;
}
.account-plan-head strong {
    font-size: 22px;
}
.account-plan ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 700;
}
.account-plan form {
    align-self: end;
    margin: 0;
}
.account-plan button {
    width: 100%;
}
.account-plan-badge {
    align-self: end;
    justify-self: start;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(18, 126, 103, .12);
    color: var(--accent-strong);
    font-weight: 800;
    font-size: 12px;
}
.account-payment-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}
.account-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
}
.account-payment-row p {
    margin: 4px 0 0;
    color: var(--muted);
    font-weight: 700;
}
.account-payment-row > span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.account-listing-list {
    display: grid;
    gap: 10px;
}
.account-listing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
}
.account-listing-row a {
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}
.account-listing-row p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.account-listing-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}
.account-listing-actions form {
    margin: 0;
}
.account-listing-actions button {
    min-height: 32px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
}
.error-page {
    min-height: calc(100vh - 64px);
    display: grid;
    align-items: center;
    padding: 58px 0 78px;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.error-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 38px;
    align-items: center;
}
.error-kicker {
    margin: 0 0 10px;
    color: var(--accent-strong);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
}
.error-layout h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: 0;
}
.error-layout p {
    margin: 0;
    max-width: 600px;
    color: var(--muted);
    font-size: 18px;
}
.error-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.error-illustration {
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 62% 35%, rgba(255, 203, 74, .9) 0 18%, transparent 19%),
        radial-gradient(circle at 42% 52%, rgba(13, 124, 102, .18) 0 30%, transparent 31%),
        linear-gradient(135deg, #fff7df, #dff7f1);
    border: 1px solid rgba(13, 124, 102, .18);
    display: grid;
    place-items: center;
    box-shadow: inset 0 -20px 50px rgba(24, 33, 45, .08);
}
.error-illustration span {
    width: 48%;
    aspect-ratio: 1.25;
    border: 4px solid var(--accent);
    border-radius: 12px;
    position: relative;
    transform: rotate(-7deg);
    background: rgba(255, 255, 255, .8);
}
.error-illustration span::before,
.error-illustration span::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    height: 4px;
    border-radius: 4px;
    background: var(--accent);
}
.error-illustration span::before { top: 34%; }
.error-illustration span::after { top: 56%; opacity: .55; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--muted); font-size: 14px; }
.toolbar-form { margin: 0; }
.seller-listing-tabs { display: inline-flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.seller-listing-tabs .badge { color: var(--muted); text-decoration: none; }
.seller-listing-tabs .badge.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
.checkbox-row { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--accent); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; padding-bottom: 40px; }
.home-section {
    margin-bottom: 8px;
}
.home-photo-grid {
    padding-bottom: 28px;
}
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}
.card.is-archived {
    background: #fbfaf7;
    border-color: rgba(142, 111, 43, .24);
}
.card.is-archived .thumb img {
    filter: saturate(.82);
}
.listing-main-panel.is-inactive-listing {
    background: #fbfaf7;
}
.listing-main-panel.is-inactive-listing .listing-media img,
.listing-main-panel.is-inactive-listing .listing-gallery-thumb img {
    filter: saturate(.78);
    opacity: .72;
}
.thumb {
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px;
    background:
        linear-gradient(135deg, rgba(13, 124, 102, .08), rgba(24, 33, 45, .03)),
        var(--surface-soft);
}
.thumb-placeholder-icon {
    width: 46px;
    height: 36px;
    border: 2px solid rgba(101, 115, 134, .45);
    border-radius: 7px;
    position: relative;
    background: rgba(255, 255, 255, .48);
}
.thumb-placeholder-icon::before {
    content: "";
    position: absolute;
    left: 6px;
    bottom: 6px;
    width: 30px;
    height: 16px;
    background:
        linear-gradient(135deg, transparent 49%, rgba(101, 115, 134, .42) 50%),
        linear-gradient(45deg, rgba(101, 115, 134, .42) 50%, transparent 51%);
    background-size: 18px 16px, 22px 16px;
    background-position: left bottom, right bottom;
    background-repeat: no-repeat;
}
.thumb-placeholder-icon::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(13, 124, 102, .45);
}
.thumb-placeholder.is-pending {
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, .58) 42%, rgba(255, 255, 255, 0) 64%),
        linear-gradient(135deg, rgba(13, 124, 102, .08), rgba(24, 33, 45, .03)),
        var(--surface-soft);
    background-size: 220% 100%, auto, auto;
    animation: placeholder-shimmer 1.8s ease-in-out infinite;
}
.thumb-placeholder strong { color: var(--text); font-size: 14px; }
.thumb-placeholder small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.thumb-placeholder.is-empty strong,
.thumb-placeholder.is-empty small {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.thumb-placeholder.is-empty {
    background:
        linear-gradient(135deg, rgba(101, 115, 134, .08), rgba(255, 255, 255, .2)),
        var(--surface-soft);
}
.thumb-placeholder.is-empty .thumb-placeholder-icon {
    opacity: .62;
}
@keyframes placeholder-shimmer {
    0% { background-position: 180% 0, 0 0, 0 0; }
    100% { background-position: -60% 0, 0 0, 0 0; }
}
.card-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.favorite-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0;
    background: rgba(255, 255, 255, .94);
    color: var(--text);
    font-size: 23px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(24, 33, 45, .12);
}
.favorite-button:hover,
.favorite-button.is-saved {
    border-color: rgba(180, 35, 24, .25);
    background: #fff3f1;
    color: var(--danger);
}
.favorite-notification-button {
    position: absolute;
    top: 58px;
    right: 10px;
    z-index: 2;
    font-size: 20px;
}
.favorite-notification-button.is-enabled,
.favorite-notification-wide-button.is-enabled {
    border-color: rgba(17, 118, 92, .4);
    background: #e9f7f2;
    color: var(--primary);
}
.favorite-notification-wide-button { gap: 8px; }
.card-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.favorite-wide-button {
    gap: 8px;
}
.favorite-wide-button span[aria-hidden="true"] {
    font-size: 21px;
    line-height: 1;
}
.seller-shop-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 14px 0 0;
}
.seller-shop-facts div {
    border-left: 3px solid var(--line);
    padding-left: 10px;
}
.seller-shop-facts dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.seller-shop-facts dd {
    margin: 3px 0 0;
    font-size: 14px;
    line-height: 1.4;
}
.seller-shop-evidence { display: inline-block; margin-top: 10px; }
.favorites-page {
    padding-bottom: 28px;
}
.favorites-panel,
.saved-searches-panel {
    display: grid;
    gap: 18px;
}
.favorites-toolbar,
.saved-searches-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted);
}
.favorites-toolbar strong,
.saved-searches-toolbar strong {
    color: var(--text);
}
.favorites-changed-count {
    margin-right: auto;
    color: var(--danger);
    font-weight: 800;
}
.favorites-empty,
.saved-searches-empty {
    min-height: 180px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}
.favorites-empty strong,
.saved-searches-empty strong {
    color: var(--text);
    font-size: 20px;
}
.favorites-panel.has-favorites .favorites-empty,
.saved-searches-panel.has-saved-searches .saved-searches-empty {
    display: none;
}
.favorite-card .thumb {
    color: var(--muted);
}
.favorite-card.is-unread {
    border-color: rgba(180, 35, 24, .32);
}
.favorite-changed-badge {
    border-color: rgba(180, 35, 24, .24);
    background: #fff3f1;
    color: var(--danger);
    font-weight: 800;
}
.nav-action-count-alert {
    margin-left: 0;
    min-width: 20px;
    border-color: rgba(180, 35, 24, .24);
    background: #fff3f1;
    color: var(--danger);
}
.saved-searches-page {
    padding-bottom: 28px;
}
.saved-searches-limit {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.saved-search-card {
    min-height: 150px;
}
.saved-search-card .card-body {
    height: 100%;
}
.saved-search-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.saved-search-toggle.is-saved {
    border-color: rgba(13, 124, 102, .28);
    background: #eefaf5;
    color: var(--accent-strong);
}
.price {
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}
.price-before {
    display: inline-block;
    margin-right: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}
.price-original {
    display: inline-block;
    margin-left: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.price-approx {
    display: inline-block;
    margin-left: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: lowercase;
}
.price-negotiable {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #eefaf5;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    vertical-align: middle;
    white-space: nowrap;
}
.title { font-weight: 700; color: var(--text); overflow-wrap: anywhere; }
.archive-note {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}
.meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 13px; }
.badge { border: 1px solid var(--line); border-radius: 999px; padding: 2px 8px; background: #fff; }
.badge-archived {
    border-color: rgba(142, 111, 43, .28);
    background: #fff8e6;
    color: #76520f;
}
.badge-promoted {
    border-color: #b78613;
    background: #fff6d8;
    color: #654600;
    font-weight: 700;
}
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    margin: 18px 0;
}
.listing-page {
    padding-bottom: 28px;
}
.listing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    grid-template-areas:
        "main sidebar"
        "details sidebar";
    gap: 22px;
    align-items: start;
}
.listing-main-panel {
    grid-area: main;
}
.listing-details-panel {
    grid-area: details;
}
.listing-heading {
    margin-top: 16px;
}
.listing-heading h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.16;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}
.listing-sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 82px;
    display: grid;
    gap: 14px;
}
.listing-sidebar .panel {
    margin: 0;
}
.listing-action-card {
    display: grid;
    gap: 16px;
}
.listing-action-card .price {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
}
.seller-card {
    display: grid;
    gap: 12px;
}
.store-product-facts {
    display: grid;
    gap: 10px;
}
.store-product-facts h2 {
    margin: 0;
    font-size: 1rem;
}
.store-product-facts dl {
    display: grid;
    gap: 8px;
    margin: 0;
}
.store-product-facts div {
    display: grid;
    gap: 2px;
}
.store-product-facts dt {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}
.store-product-facts dd {
    margin: 0;
    overflow-wrap: anywhere;
}
.seller-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.seller-card span {
    color: var(--muted);
    font-size: 13px;
}
.seller-card-name {
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.seller-profile-button {
    width: 100%;
    justify-content: center;
}
.seller-profile-panel {
    display: grid;
    gap: 16px;
}
.seller-profile-head {
    display: flex;
    gap: 14px;
    align-items: center;
    min-width: 0;
}
.seller-profile-head h1 {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
}
.seller-shop-head { align-items: flex-start; }
.seller-shop-follow {
    margin-left: auto;
    flex: 0 0 auto;
}
.seller-shop-follow form { margin: 0; }
.seller-shop-follow-button {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.seller-shop-follow-button span { font-size: 24px; line-height: 1; }
.seller-shop-follow-button:hover,
.seller-shop-follow-button:focus-visible,
.seller-shop-follow-button.is-active {
    border-color: rgba(13, 124, 102, .6);
    background: rgba(13, 124, 102, .08);
    color: var(--accent);
}
.seller-shop-follow-button:hover { transform: translateY(-1px); }
.seller-shop-head .seller-shop-avatar {
    width: 88px;
    height: 88px;
    border-width: 1px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .10);
}
.seller-shop-head .seller-shop-avatar img { padding: 10px; }
.seller-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, .75) 0 18%, transparent 19%),
        linear-gradient(135deg, rgba(13, 124, 102, .92), rgba(24, 33, 45, .9));
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}
.seller-avatar-small {
    width: 52px;
    height: 52px;
    font-size: 22px;
}
.seller-shop-avatar {
    background: #fff;
    border: 2px solid rgba(13, 124, 102, .35);
    overflow: hidden;
}
.seller-shop-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.seller-shop-avatar > span {
    display: none;
}
.seller-shop-avatar.seller-avatar-fallback {
    background: linear-gradient(135deg, rgba(13, 124, 102, .92), rgba(24, 33, 45, .9));
}
.seller-shop-avatar.seller-avatar-fallback > span {
    display: block;
}
.seller-profile-meta {
    margin: 4px 0 0;
    color: var(--muted);
    overflow-wrap: anywhere;
}
.seller-shop-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(13, 124, 102, .2);
    background: rgba(13, 124, 102, .05);
}
.seller-shop-info-label { color: var(--muted); font-size: 14px; font-weight: 700; }
@media (max-width: 640px) {
    .seller-shop-info { align-items: stretch; flex-direction: column; }
    .seller-shop-head .seller-shop-avatar { width: 70px; height: 70px; }
}
.seller-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}
.seller-profile-grid > div,
.seller-profile-stat {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: var(--surface-soft);
}
.seller-profile-stat {
    color: inherit;
    text-decoration: none;
}
.seller-profile-stat:hover,
.seller-profile-stat.is-active {
    border-color: rgba(13, 124, 102, .45);
    background: rgba(13, 124, 102, .08);
}
.seller-profile-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}
.seller-profile-grid strong {
    display: block;
    margin-top: 2px;
    font-size: 22px;
}
.seller-catalog {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}
.seller-catalog-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.seller-catalog-heading h2 { margin: 0; font-size: 20px; }
.seller-listing-modes {
    grid-template-columns: repeat(3, minmax(84px, 1fr));
    width: min(100%, 360px);
}
.seller-listing-modes .seller-profile-stat { padding: 8px 10px; }
.seller-listing-modes strong { font-size: 18px; }
.seller-catalog-controls {
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
}
.seller-catalog-search {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    align-items: end;
    flex: 1 1 320px;
    gap: 10px;
    min-width: 0;
}
.seller-catalog-sort-form { flex: 0 1 220px; }
.seller-catalog-controls label {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.seller-catalog-controls input,
.seller-catalog-controls select {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    padding: 0 10px;
    font: inherit;
}
.seller-catalog-search > button { min-height: 40px; white-space: nowrap; }
.seller-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.seller-profile-actions form {
    margin: 0;
}
.seller-reviews-list {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}
.seller-review {
    border-top: 1px solid var(--line);
    padding-top: 8px;
}
.seller-review strong {
    color: var(--accent-strong);
    letter-spacing: 1px;
    margin-right: 8px;
}
.seller-review p {
    margin: 4px 0 0;
    color: var(--muted);
}
.seller-review-form {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.seller-profile-section,
.seller-profile-facets {
    display: grid;
    gap: 8px;
}
.seller-profile-facets {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-items: start;
}
.seller-profile-section-title {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.seller-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.seller-badge {
    border-color: rgba(13, 124, 102, .28);
    background: rgba(13, 124, 102, .08);
    color: #0b5d4d;
    font-weight: 700;
}
.ad-slot {
    min-height: 96px;
    border: 1px dashed rgba(101, 115, 134, .35);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: rgba(255, 255, 255, .55);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.ad-slot-wide {
    margin: 18px 0;
    min-height: 86px;
}
.ad-slot .adsbygoogle {
    display: block;
    width: 100%;
    min-height: 90px;
}
.ad-slot-sidebar {
    min-height: 250px;
}
.listing-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-soft);
    margin: 14px 0;
}
.listing-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: var(--surface-soft);
}
.listing-gallery {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}
.listing-gallery .listing-media {
    margin: 0;
}
.listing-gallery-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: 8px;
}
.listing-gallery-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-soft);
}
.listing-gallery-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.listing-related-panel .toolbar {
    margin-bottom: 14px;
}
.content { white-space: pre-wrap; overflow-wrap: anywhere; }
.listing-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 14px 0;
}
.listing-facts-compact {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.listing-archive-banner {
    display: grid;
    gap: 4px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid rgba(142, 111, 43, .24);
    border-radius: 8px;
    background: #fff8e6;
    color: #76520f;
}
.listing-archive-banner strong {
    color: #5f4108;
}
.listing-archive-banner span {
    color: #76520f;
    line-height: 1.45;
}
.listing-facts > div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    min-width: 0;
}
.listing-facts span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 3px;
}
.listing-facts strong,
.listing-facts a {
    font-size: 14px;
    overflow-wrap: anywhere;
}
.listing-facts .listing-warning {
    border-color: rgba(180, 35, 24, .22);
    background: #fff8f6;
}
.listing-facts .listing-warning span,
.listing-facts .listing-warning strong {
    color: var(--danger);
}
.source-list {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    padding: 12px;
    margin: 14px 0;
    scroll-margin-top: 84px;
}
.source-list h2 {
    margin: 0 0 4px;
    font-size: 16px;
}
.source-list p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
}
.source-list .source-price-range {
    color: var(--text);
    font-weight: 700;
}
.source-list-empty {
    margin: 0;
}
.source-timeline {
    display: grid;
    gap: 8px;
}
.source-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 10px;
}
.source-card.is-latest {
    border-color: rgba(0, 127, 95, .28);
    background: #f7fffb;
}
.source-card-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.source-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    flex: 0 0 auto;
}
.source-card-copy {
    min-width: 0;
}
.source-card-copy strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    overflow-wrap: anywhere;
}
.source-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.source-card-changes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}
.source-card-changes .badge {
    font-size: 11px;
    padding: 3px 7px;
    background: rgba(13, 124, 102, .08);
    color: var(--accent-strong);
}
.source-card-action {
    min-height: 34px;
    padding: 7px 10px;
    white-space: nowrap;
}
.source-card-missing {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.listing-actions {
    display: grid;
    gap: 10px;
}
.listing-actions .button {
    width: 100%;
    justify-content: center;
}
.listing-language-hint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}
.listing-section {
    margin-top: 20px;
}
.listing-section h2,
.feedback-panel h2 {
    margin-top: 0;
}
.listing-translation p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}
.listing-translation h3 {
    margin: 0 0 10px;
    font-size: 18px;
}
.listing-original {
    border: 1px solid var(--border);
    padding: 0;
}
.listing-original summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
    font-weight: 800;
}
.listing-original summary::-webkit-details-marker { display: none; }
.listing-original summary::before {
    content: '+';
    display: inline-block;
    width: 22px;
    color: var(--accent);
    font-size: 20px;
}
.listing-original[open] summary::before { content: '−'; }
.listing-original .content { padding: 0 18px 18px; }
.listing-history p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}
.listing-history-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.listing-history-list li {
    display: grid;
    gap: 7px;
    border-left: 3px solid var(--accent);
    padding: 9px 0 9px 12px;
    background: linear-gradient(90deg, rgba(13, 124, 102, .07), transparent 72%);
}
.listing-history-list time {
    color: var(--muted);
    font-size: 13px;
}
.listing-history-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.listing-history-details {
    display: grid;
    gap: 6px;
}
.listing-history-detail {
    display: grid;
    gap: 3px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}
.listing-history-detail strong {
    color: var(--ink);
    font-size: 13px;
}
.listing-history-detail span {
    color: var(--muted);
    overflow-wrap: anywhere;
}
.notice {
    border: 1px solid rgba(13, 124, 102, .25);
    border-radius: 8px;
    background: rgba(13, 124, 102, .08);
    padding: 10px 12px;
    color: var(--accent-strong);
}
.report-panel {
    padding: 0;
}
.report-summary {
    min-height: 48px;
    padding: 14px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--accent-strong);
    font-weight: 700;
    list-style: none;
}
.report-summary::-webkit-details-marker {
    display: none;
}
.report-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(13, 124, 102, .32);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    background: rgba(13, 124, 102, .08);
}
.report-panel[open] {
    padding: 0 16px 16px;
}
.report-panel[open] .report-summary {
    margin: 0 -16px 12px;
}
.feedback-form { display: grid; gap: 12px; max-width: 720px; }
.feedback-options { display: flex; flex-wrap: wrap; gap: 10px; }
.feedback-options label {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
}
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.stat {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    padding: 12px;
}
.stat span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    overflow-wrap: anywhere;
}
.stat strong { display: block; font-size: 24px; margin-top: 4px; }
.admin-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    align-items: end;
}
.admin-table-wrap { overflow-x: auto; }

.store-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.store-admin-card { margin: 0; }

.store-admin-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.store-admin-card-head h2 { margin: 0; font-size: 20px; }

.store-admin-facts { margin: 18px 0; }
.store-admin-facts div { margin: 0 0 12px; }
.store-admin-facts dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.store-admin-facts dd { margin: 3px 0 0; line-height: 1.45; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    font-size: 14px;
}
.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--line);
    padding: 10px;
    text-align: left;
    vertical-align: top;
}
.admin-table th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.admin-table input,
.admin-table select {
    min-height: 38px;
    padding: 6px 8px;
    margin-top: 6px;
}
.admin-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 0;
    margin: 0;
    padding: 0;
}
.admin-table button {
    min-height: 38px;
    padding: 0 12px;
}
.admin-inline-link {
    display: inline-block;
    margin-top: 6px;
}
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.seller-language-form {
    margin: 0;
}
.seller-language-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}
.seller-language-option {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    white-space: nowrap;
}
.seller-language-hint {
    display: block;
    max-width: 280px;
    margin-top: 8px;
    color: var(--muted);
}
@media (max-width: 680px) {
    .shell { width: min(100% - 20px, 1180px); }
    .topbar-inner {
        display: grid;
        grid-template-columns: minmax(34px, auto) minmax(0, 1fr);
        gap: 10px 6px;
        align-items: center;
        padding: 10px 0;
    }
    .brand {
        grid-column: 1;
        grid-row: 1;
        gap: 6px;
        min-width: 0;
    }
    .brand-mark,
    .brand-mark svg,
    .brand-mark img {
        width: 34px;
        height: 34px;
    }
    .brand strong { font-size: 18px; }
    .brand-copy span { display: none; }
    .mobile-nav-toggle {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        display: inline-grid;
        place-items: center;
        width: 36px;
        height: 36px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
        color: var(--text);
        cursor: pointer;
    }
    .mobile-nav-toggle:hover { background: var(--surface-soft); }
    .nav {
        display: none;
    }
    .topbar-inner.mobile-nav-open .nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        gap: 4px;
        flex-wrap: wrap;
        overflow: visible;
    }
    .nav-group {
        min-height: 34px;
        flex: 0 0 auto;
        gap: 0;
        padding: 2px;
    }
    .nav-group a,
    .nav-group span {
        min-width: 28px;
        min-height: 28px;
        padding: 0 7px;
        font-size: 12px;
    }
    .header-currency,
    .header-language {
        min-height: 28px;
        max-width: 82px;
        padding: 0 20px 0 7px;
        font-size: 12px;
    }
    .header-language { max-width: 58px; }
    .nav-action-link {
        gap: 4px;
        padding: 0 8px;
    }
    .nav-action-icon {
        display: inline-flex;
        align-items: center;
    }
    .nav-action-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .nav-action-count {
        min-width: 1.2em;
        font-size: 12px;
    }
    .nav-auth-group .nav-action-link {
        width: 28px;
        padding: 0;
        justify-content: center;
    }
    .account-hero {
        display: grid;
    }
    .account-grid {
        grid-template-columns: 1fr;
    }
    .account-plan-grid {
        grid-template-columns: 1fr;
    }
    .account-panel-head {
        display: grid;
    }
    .account-panel-head span {
        text-align: left;
    }
    .account-provider {
        align-items: flex-start;
    }
    .account-payment-row {
        display: grid;
    }
    .account-listing-row {
        grid-template-columns: 1fr;
    }
    .account-listing-actions {
        justify-content: flex-start;
    }
    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: none;
        flex-basis: auto;
        min-width: 0;
    }
    .topbar-inner.mobile-nav-open .header-search { grid-row: 3; }
    .header-search input {
        min-height: 42px;
        font-size: 16px;
    }
    .header-search button {
        min-height: 42px;
        min-width: 86px;
    }
    .site-footer-inner { grid-template-columns: 1fr; }
    .home-hero { padding: 28px 0 34px; }
    .home-hero-copy { text-align: left; }
    .home-search { grid-template-columns: 1fr; }
    .home-search-field,
    .home-location-select {
        min-height: 58px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .home-search input,
    .home-search select,
    .home-search button { min-height: 58px; }
    .home-location-pills { justify-content: flex-start; }
    .error-layout { grid-template-columns: 1fr; }
    .error-illustration {
        grid-row: 1;
        width: min(220px, 70vw);
        justify-self: center;
    }
    .listing-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "sidebar"
            "details";
    }
    .listing-sidebar {
        position: static;
    }
    .source-card {
        grid-template-columns: 1fr;
    }
    .source-card-action {
        width: 100%;
        justify-content: center;
    }
    .ad-slot-sidebar {
        min-height: 110px;
    }
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 10px;
    }
    .category-icon {
        width: 64px;
        height: 64px;
        font-size: 25px;
    }
    .category-tile {
        min-height: 118px;
    }
    .category-tile strong {
        font-size: 13px;
    }
    .searchbar { grid-template-columns: 1fr; }
    .searchbar select,
    .searchbar input {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .filter-actions {
        width: 100%;
        margin-left: 0;
    }
    .filter-actions .button { width: 100%; }
    .city-place-selector,
    .city-selector-details { width: 100%; }
    .city-selector-search { grid-template-columns: 1fr; }
    .price-filter,
    .condition-filter { width: 100%; }
    .results-sort-form {
        width: 100%;
        margin-left: 0;
        align-items: stretch;
    }
    .results-sort-form label {
        flex: 1 1 auto;
    }
    .results-sort-form select {
        width: 100%;
        min-width: 0;
    }
    .seller-catalog-heading { align-items: flex-start; flex-direction: column; }
    .seller-listing-modes { width: 100%; }
    .seller-catalog-controls { align-items: stretch; flex-direction: column; }
    .seller-catalog-search { width: 100%; grid-template-columns: minmax(0, 1fr) auto; }
    .seller-catalog-sort-form { width: 100%; }
    .search-map-header {
        display: grid;
        gap: 8px;
    }
    .search-map-actions {
        justify-content: space-between;
        width: 100%;
    }
    .search-map {
        height: 300px;
    }
    .hero h1 { font-size: 24px; }
    .toolbar { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 420px) {
    .topbar-inner {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 8px 6px;
    }
    .brand-copy { display: none; }
    .nav { gap: 4px; }
    .nav-group a,
    .nav-group span {
        padding: 0 6px;
    }
    .header-currency {
        max-width: 84px;
        padding-right: 20px;
    }
    .header-language {
        max-width: 56px;
        padding-right: 20px;
    }
    .header-search button {
        min-width: 78px;
        padding: 0 11px;
    }
}
