:root {
  --bg: #ffffff;
  --ink: #11120f;
  --muted: #6b6d67;
  --line: #e5e2da;
  --soft: #f7f6f2;
  --soft-strong: #f0eee8;
  --emerald: #087a5b;
  --emerald-dark: #04543f;
  --gold: #bf8b24;
  --shadow: 0 18px 45px rgba(17, 18, 15, 0.14);
  --deep-shadow: 0 28px 70px rgba(8, 17, 18, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.page-loading main {
  position: relative;
  min-height: min(620px, 72vh);
}

body.page-loading main > * {
  visibility: hidden;
}

body.page-loading main::before {
  content: "";
  position: relative;
  display: grid;
  width: min(calc(100% - 52px), 1180px);
  min-height: min(480px, 58vh);
  margin: 34px auto 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(8, 122, 91, 0.08) 40%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(circle at 100% 0%, rgba(191, 139, 36, 0.16), rgba(191, 139, 36, 0) 34%),
    linear-gradient(135deg, rgba(8, 122, 91, 0.08), rgba(255, 255, 255, 0) 56%),
    #fff;
  background-size: 220% 100%, auto, auto, auto;
  box-shadow: 0 22px 60px rgba(17, 18, 15, 0.08);
  visibility: visible;
  animation: page-loader-shimmer 1.35s ease-in-out infinite;
}

body.page-loading main::after {
  content: "Loading marketplace...";
  position: absolute;
  top: min(240px, 30vh);
  left: 50%;
  display: grid;
  gap: 18px;
  width: min(520px, calc(100% - 84px));
  transform: translateX(-50%);
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  line-height: 1;
  visibility: visible;
}

body.page-loading main .page-loader-spinner {
  display: none;
}

body.page-loading .category-nav {
  min-height: 54px;
  visibility: hidden;
}

body.page-loading[data-page="contact"] main::after {
  content: "Loading contact...";
}

body.page-loading[data-page="legal"] main::after {
  content: "Loading page...";
}

body.page-loading[data-page="support"] main::after {
  content: "Loading support...";
}

body.page-loading[data-page="about"] main::after {
  content: "Loading about...";
}

@keyframes page-loader-shimmer {
  0% {
    background-position: 180% 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: -80% 0, 0 0, 0 0, 0 0;
  }
}

html {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-top,
.category-nav,
.hero-content,
.section,
.promo-grid,
.app-cta,
.stats-row {
  width: min(100%, 1720px);
  margin: 0 auto;
}

.header-top {
  display: grid;
  grid-template-columns: auto minmax(420px, 680px) auto;
  align-items: center;
  gap: 28px;
  padding: 16px 26px;
}

.brand,
.header-actions,
.category-nav,
.market-tabs,
.filters,
.section-heading,
.store-buttons,
.app-benefits {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 17, 18, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.top-search {
  display: grid;
  grid-template-columns: 1fr 150px 92px;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.top-search input,
.top-search select,
.market-search input,
.market-search select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.top-search input {
  padding: 0 16px;
  font-weight: 650;
}

.top-search select {
  border-left: 1px solid var(--line);
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.top-search button,
.market-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: var(--emerald);
  font-weight: 850;
}

.header-actions {
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.account-login-button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.account-login-button:hover {
  border-color: rgba(8, 122, 91, 0.45);
  color: var(--emerald);
}

.home-pins-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(8, 122, 91, .25);
  border-radius: 6px;
  color: var(--emerald);
  background: rgba(8, 122, 91, .06);
  font-weight: 900;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-pins-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-pins-link:hover {
  border-color: var(--emerald);
  color: #fff;
  background: var(--emerald);
  transform: translateY(-1px);
}

.account-verified-badge {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 50%;
  color: #fff;
  background: #1687f8;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  vertical-align: -2px;
}

.seller-link {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--gold);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 15, 0.48);
}

.account-dialog {
  position: relative;
  width: min(430px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 18, 15, 0.22);
}

.account-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.account-dialog h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1;
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-form.is-hidden {
  display: none;
}

.account-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.account-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.account-form input[type="file"] {
  padding: 10px 12px;
}

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

.account-form button,
.account-signed-in button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--emerald);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.account-signed-in {
  display: grid;
  gap: 12px;
}

.account-vault-link {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--emerald);
  border-radius: 6px;
  color: var(--emerald-dark);
  font-weight: 900;
}

.account-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.account-switch,
.account-status,
.account-signed-in p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.account-profile-name {
  color: var(--ink) !important;
  font-size: 18px;
  font-weight: 900 !important;
}

.account-profile-birthday {
  margin-top: 7px !important;
  font-size: 13px;
}

.account-switch button {
  border: 0;
  background: transparent;
  color: var(--emerald);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.account-status[data-state="error"] {
  color: #b42318;
}

.account-status[data-state="info"] {
  color: var(--emerald);
}

.category-nav {
  gap: 4px;
  padding: 0 26px;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
}

.category-nav-item {
  flex: 0 0 auto;
}

.category-nav > a,
.category-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  color: #252722;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  border-radius: 6px;
}

.category-nav > a:hover,
.category-nav-link:hover,
.category-nav-link:focus-visible {
  background: var(--soft);
  outline: 0;
}

.category-nav > a.is-active,
.category-nav-link.is-active {
  color: var(--ink);
  background: var(--soft);
}

.category-nav-label {
  font-size: 13px;
}

.category-hover-menu {
  position: fixed;
  z-index: 80;
  width: min(320px, calc(100vw - 24px));
  color: var(--ink);
}

.category-hover-panel {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(25, 28, 22, 0.18);
}

.category-hover-title,
.category-hover-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #252722;
  border-radius: 6px;
}

.category-hover-title {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
}

.category-hover-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  font-size: 17px;
  line-height: 1;
  object-fit: contain;
}

.category-icon-image {
  display: block;
  flex: 0 0 auto;
}

.category-hover-list {
  display: grid;
  gap: 3px;
}

.category-hover-row {
  position: relative;
}

.category-hover-row[data-depth="2"] .category-hover-link {
  min-height: 36px;
  padding-left: 12px;
  font-size: 12px;
}

.category-hover-row[data-depth="3"] .category-hover-link,
.category-hover-row[data-depth="4"] .category-hover-link {
  min-height: 34px;
  padding-left: 12px;
  font-size: 12px;
  font-weight: 750;
}

.category-hover-link {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.category-hover-link:hover,
.category-hover-link:focus-visible,
.category-hover-row:hover > .category-hover-link {
  background: var(--soft);
  outline: 0;
}

.category-hover-link strong {
  flex: 1;
}

.category-hover-children {
  display: none;
  background: #fff;
  gap: 3px;
}

.category-hover-children--inline {
  margin: 2px 0 6px 30px;
  padding-left: 10px;
  border-left: 1px solid #e5dfd4;
}

.category-hover-children--flyout {
  position: absolute;
  top: 0;
  left: calc(100% - 4px);
  z-index: 2;
  width: min(300px, calc(100vw - 24px));
  max-height: min(560px, calc(100vh - 190px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(25, 28, 22, 0.16);
}

.category-hover-menu[data-flyout-side="left"] .category-hover-children--flyout {
  right: calc(100% - 4px);
  left: auto;
}

.category-hover-row:focus-within > .category-hover-children,
.category-hover-row.is-mobile-open > .category-hover-children {
  display: grid;
}

.category-hover-row.is-mobile-open > .category-hover-link {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 420px;
  color: #fff;
  overflow: hidden;
  background: #1b2b2e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 12, 0.08), rgba(9, 13, 12, 0.36) 100%),
    linear-gradient(90deg, rgba(9, 13, 12, 0.28), rgba(9, 13, 12, 0.04) 42%, rgba(9, 13, 12, 0.18) 100%),
    url("./assets/marketplace-hero.png") center / cover;
  transform: scale(1.01);
}

.hero::after {
  content: none;
  position: absolute;
  z-index: 1;
  right: max(26px, calc((100vw - 1720px) / 2 + 26px));
  bottom: 36px;
  width: min(42vw, 690px);
  height: 245px;
  background: url("https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=900&q=85") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.hero::before {
  content: none;
  position: absolute;
  z-index: 1;
  right: max(14px, calc((100vw - 1720px) / 2 + 14px));
  bottom: 18px;
  width: min(46vw, 760px);
  height: 285px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.28)),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  align-content: center;
  align-items: center;
  min-height: 430px;
  padding: 56px 26px;
}

.market-panel {
  width: min(100%, 820px);
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.market-tabs {
  display: grid;
  grid-template-columns: 58px repeat(6, minmax(78px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.market-tabs button,
.filters button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--soft);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.market-tabs .active,
.filters .active {
  color: #fff;
  background: var(--emerald);
}

.market-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 10px;
}

.market-search input,
.market-search select {
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 18px;
  font-weight: 650;
}

.market-search button {
  border-radius: 6px;
  font-size: 18px;
}

.category-strip {
  display: none;
}

.section {
  padding: 26px 26px 24px;
}

.section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.section-heading .section-title {
  display: grid;
  gap: 6px;
  align-items: start;
}

.section-heading h2,
.app-cta h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading a {
  color: var(--emerald);
  font-size: 14px;
  font-weight: 850;
}

.filters {
  gap: 8px;
}

.filters button,
.filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.filters a.active {
  border-color: var(--emerald);
  color: #fff;
  background: var(--emerald);
}

body.has-category-view .hero,
body.has-category-view .luxury-section,
body.has-category-view .services-section,
body.has-category-view .deal-section,
body.has-category-view .app-cta,
body.has-category-view .stats-row {
  display: none;
}

body.has-category-view main {
  background:
    linear-gradient(180deg, rgba(8, 122, 91, 0.035), rgba(255, 255, 255, 0) 280px),
    #fff;
}

body.has-category-view #featured {
  display: block;
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: 34px 26px 42px;
}

body.has-category-view #featured::after {
  content: "";
  display: block;
  clear: both;
}

body.has-category-view #featured .section-heading {
  align-items: flex-start;
  margin: 0 0 14px 294px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

body.has-category-view #featured .section-heading > div {
  align-items: flex-start;
}

body.has-category-view #featured .section-heading h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: 0;
  text-transform: none;
}

.category-filter-panel {
  float: left;
  position: sticky;
  top: 124px;
  display: grid;
  gap: 18px;
  width: 268px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(17, 18, 15, 0.08);
  backdrop-filter: blur(12px);
}

.category-filter-head {
  display: grid;
  gap: 6px;
}

.category-filter-head > span,
.category-filter-label {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-filter-head strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.category-filter-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.category-filter-crumbs a {
  color: var(--emerald);
  text-decoration: none;
}

.category-filter-crumbs em {
  color: #c7c2b8;
  font-style: normal;
}

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

.category-filter-search {
  display: grid;
  gap: 10px;
}

.category-filter-search label {
  display: grid;
  gap: 6px;
}

.category-filter-search label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.category-filter-search input,
.category-filter-search select {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 750;
}

.category-filter-search input:focus,
.category-filter-search select:focus {
  border-color: rgba(8, 122, 91, 0.45);
  outline: 3px solid rgba(8, 122, 91, 0.11);
}

.category-filter-search button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--emerald);
  font-size: 13px;
  font-weight: 900;
}

.category-filter-list,
.category-filter-pills {
  display: grid;
  gap: 8px;
}

.category-filter-link,
.category-filter-pills a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.category-filter-link:hover,
.category-filter-link:focus-visible,
.category-filter-pills a:hover,
.category-filter-pills a:focus-visible {
  border-color: rgba(8, 122, 91, 0.34);
  background: rgba(8, 122, 91, 0.06);
  outline: 0;
}

.category-filter-link.is-active,
.category-filter-pills a.is-active {
  border-color: var(--emerald);
  color: #fff;
  background: var(--emerald);
}

body.has-category-view #featured .listing-grid {
  margin-left: 294px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.has-category-view #featured .listing-card {
  box-shadow: 0 1px 0 rgba(17, 18, 15, 0.04);
}

body.has-category-view #featured .listing-card img {
  aspect-ratio: 1.1;
}

body.has-category-view #featured .listing-card h3 {
  min-height: 42px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.home-luxury-break {
  grid-column: 1 / -1;
  width: 100%;
  margin: 22px 0 10px;
  padding-top: 8px;
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.listing-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
}

.listing-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: opacity 180ms ease, transform 180ms ease;
}

.listing-card-hover-image {
  position: absolute;
  inset: 0;
  height: 100%;
  background: #fff;
  opacity: 0;
}

.listing-card:hover .listing-card-hover-image,
.listing-card:focus-visible .listing-card-hover-image {
  opacity: 1;
}

.listing-card.has-hover-image:hover .listing-card-media > img:not(.listing-card-hover-image),
.listing-card.has-hover-image:focus-visible .listing-card-media > img:not(.listing-card-hover-image) {
  opacity: 0;
}

.listing-card:hover .listing-card-media img,
.listing-card:focus-visible .listing-card-media img {
  transform: none;
}

.listing-card div {
  padding: 13px;
}

.listing-type {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.listing-card h3 {
  min-height: 38px;
  margin: 6px 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.listing-card p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.listing-card strong {
  font-size: 14px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0 26px 24px;
}

.promo-grid a {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f7f6f2 100%);
}

.promo-grid strong {
  color: var(--emerald-dark);
  font-size: 16px;
}

.promo-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.luxury-section {
  padding-top: 10px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #14201f;
  box-shadow: 0 1px 0 rgba(17, 18, 15, 0.04);
}

.collection-large {
  min-height: 350px;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 12, 0.05) 20%, rgba(8, 14, 12, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 14, 12, 0.28), rgba(8, 14, 12, 0.05));
}

.collection-card span,
.collection-card strong {
  position: relative;
  z-index: 1;
  margin: 0 18px;
}

.collection-card span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 850;
}

.collection-card strong {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.22;
}

.collection-large strong {
  max-width: 420px;
  font-size: 26px;
}

.collection-card:hover img {
  transform: scale(1.04);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 18, 15, 0.04);
}

.service-grid span,
.deal-grid span,
.app-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-grid strong {
  font-size: 19px;
  line-height: 1.18;
}

.service-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.deal-section {
  padding-top: 0;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.deal-grid a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(191, 139, 36, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(191, 139, 36, 0.12), rgba(8, 122, 91, 0.06)),
    #fff;
}

.deal-grid strong {
  font-size: 18px;
  line-height: 1.22;
}

.app-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 240px;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
  margin-top: 6px;
  padding: 30px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(191, 139, 36, 0.36), transparent 32%),
    linear-gradient(135deg, #071512 0%, var(--emerald-dark) 50%, var(--emerald) 100%);
  border-radius: 8px;
  overflow: hidden;
}

.app-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  max-width: 720px;
}

.store-buttons {
  gap: 12px;
  flex-wrap: wrap;
}

.store-buttons a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  background: #111;
  font-weight: 850;
}

.phone-preview {
  display: flex;
  justify-content: flex-end;
}

.phone-preview > div {
  display: grid;
  gap: 8px;
  width: 150px;
  min-height: 188px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.phone-preview span {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
}

.phone-preview strong {
  align-self: end;
  font-size: 20px;
  line-height: 1.05;
}

.phone-preview small {
  color: rgba(255,255,255,0.74);
  font-weight: 700;
}

.app-benefits {
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
  font-weight: 750;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-row div {
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 15px 10px;
  border-right: 1px solid var(--line);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong {
  font-size: 15px;
}

.stats-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.contact-hero,
.contact-shell,
.support-details,
.office-band {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  align-items: end;
  gap: 28px;
  padding-top: 78px;
  padding-bottom: 34px;
  background:
    linear-gradient(115deg, rgba(8, 122, 91, 0.1), rgba(191, 139, 36, 0.08) 42%, rgba(255, 255, 255, 0) 74%);
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.93;
  letter-spacing: 0;
}

.contact-hero-copy,
.contact-form-panel,
.support-panel,
.support-details,
.office-band {
  min-width: 0;
}

.contact-hero-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.language-switcher button {
  min-width: 46px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}

.language-switcher button.active {
  color: #fff;
  background: var(--ink);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 26px;
  padding-bottom: 36px;
}

.contact-form-panel,
.support-panel,
.support-details,
.office-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-form-panel {
  padding: 32px;
}

.contact-section-title h2,
.support-details h2,
.office-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-section-title p,
.support-details > div > p,
.office-band p {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2a2d27;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  color: var(--ink);
  background: var(--soft);
  font-size: 15px;
  font-weight: 650;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(8, 122, 91, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 122, 91, 0.1);
}

.consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-submit-row button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--emerald);
  font-weight: 900;
}

.contact-submit-row button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-submit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.contact-submit-row p[data-state="success"] {
  color: var(--emerald);
}

.contact-submit-row p[data-state="error"] {
  color: #b42318;
}

.support-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px;
  background: var(--soft);
}

.support-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
}

.support-card.primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 122, 91, 0.92), rgba(17, 18, 15, 0.96)),
    var(--ink);
}

.support-card span,
.contact-methods span,
.support-detail-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-card strong {
  font-size: 30px;
  line-height: 1.05;
}

.support-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
  line-height: 1.55;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.25;
}

.support-details {
  padding-top: 34px;
  padding-bottom: 34px;
}

.support-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.support-detail-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.support-detail-grid h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.support-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.office-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 40px;
  padding-top: 28px;
  padding-bottom: 28px;
  background:
    linear-gradient(90deg, rgba(191, 139, 36, 0.1), rgba(8, 122, 91, 0.08)),
    #fff;
}

.office-band h3 {
  margin: 6px 0 0;
  font-size: 18px;
}

.legal-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 70px 26px 54px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-hero > a {
  width: fit-content;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 900;
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  font-weight: 750;
}

.legal-meta strong {
  margin-left: 4px;
  color: var(--ink);
}

.legal-content {
  max-width: 860px;
  padding-top: 34px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
}

.legal-content h2,
.legal-content h3 {
  margin: 34px 0 10px;
  line-height: 1.15;
}

.legal-content h2 {
  font-size: 30px;
}

.legal-content h3 {
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: #3f423b;
}

.legal-content a {
  color: var(--emerald);
  font-weight: 850;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.support-page {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 54px 26px 52px;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: stretch;
}

.support-hero > div,
.support-hero > aside,
.support-main-content,
.support-side-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.support-hero > div {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 380px;
  padding: 44px;
  background:
    linear-gradient(120deg, rgba(8, 122, 91, 0.1), rgba(191, 139, 36, 0.08) 48%, rgba(255,255,255,0)),
    #fff;
}

.support-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.support-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.support-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.support-actions a:first-child {
  color: #fff;
  border-color: var(--emerald);
  background: var(--emerald);
}

.support-hero > aside {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 122, 91, 0.94), rgba(17, 18, 15, 0.96)),
    var(--ink);
}

.support-hero aside span,
.support-side-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-hero aside strong {
  font-size: 34px;
  line-height: 1.06;
}

.support-hero aside p {
  color: rgba(255,255,255,0.76);
  font-size: 15px;
}

.support-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 22px;
  margin-top: 24px;
}

.support-main-content {
  padding: 34px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.support-main-content h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.support-main-content h2:not(:first-child) {
  margin-top: 34px;
}

.support-main-content p,
.support-main-content li {
  color: #3f423b;
}

.support-main-content ul,
.support-main-content ol {
  padding-left: 22px;
}

.support-side-list {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  background: var(--soft);
}

.support-side-list h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.support-side-list a {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.support-side-list strong {
  font-size: 18px;
}

.detail-page {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 38px 26px 54px;
}

.detail-page [hidden] {
  display: none !important;
}

.detail-loading {
  display: grid;
  grid-template-columns: 96px minmax(0, 560px);
  gap: 26px;
  align-items: center;
  min-height: min(540px, 62vh);
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(191, 139, 36, 0.16), rgba(191, 139, 36, 0) 34%),
    linear-gradient(135deg, rgba(8, 122, 91, 0.08), rgba(255, 255, 255, 0) 56%),
    #fff;
  box-shadow: 0 22px 60px rgba(17, 18, 15, 0.08);
}

.detail-loading-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #0f1210;
  box-shadow: inset 0 -4px 0 rgba(191, 139, 36, 0.7);
}

.detail-loading-mark span {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold);
  border-radius: 999px;
  animation: detail-loader-spin 0.9s linear infinite;
}

.detail-loading > div:last-child {
  display: grid;
  gap: 12px;
}

.detail-loading > div:last-child > span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(191, 139, 36, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-loading h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.detail-loading p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}

.detail-loading[data-state="error"] .detail-loading-mark span {
  border-color: rgba(191, 139, 36, 0.28);
  border-top-color: var(--gold);
  animation: none;
}

@keyframes detail-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 24px;
  align-items: start;
}

.detail-gallery,
.detail-summary,
.detail-content,
.detail-side {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-gallery {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  gap: 10px;
  overflow: hidden;
  min-height: 520px;
  padding: 10px;
  background: var(--soft);
}

.detail-main-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.detail-gallery img,
.detail-gallery video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-main-media img,
.detail-main-media video {
  min-height: 500px;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.detail-thumbs button {
  position: relative;
  overflow: hidden;
  min-height: 84px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
}

.detail-thumbs button.active {
  border-color: var(--gold);
}

.detail-thumbs img,
.detail-thumbs video {
  aspect-ratio: 1.25;
  object-fit: contain;
}

.detail-thumbs span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 18, 16, 0.78);
  font-size: 11px;
  font-weight: 850;
}

.detail-summary {
  display: grid;
  gap: 20px;
  min-height: 0;
  padding: 40px;
  position: sticky;
  top: 118px;
  overflow: visible;
  box-shadow: 0 22px 60px rgba(17, 18, 15, 0.08);
}

.detail-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 100% 0%, rgba(191, 139, 36, 0.12), rgba(191, 139, 36, 0) 34%);
}

.detail-summary > * {
  position: relative;
  z-index: 1;
}

.detail-summary > span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(191, 139, 36, 0.12);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-summary h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.detail-summary p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.detail-summary > strong {
  width: fit-content;
  margin-top: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(8, 122, 91, 0.16);
  border-radius: 8px;
  color: var(--emerald-dark);
  background: rgba(8, 122, 91, 0.08);
  font-size: 30px;
  line-height: 1;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.detail-actions a,
.detail-actions button,
.ask-price-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.ask-price-menu {
  position: relative;
  z-index: 6;
}

.ask-price-menu summary {
  gap: 12px;
  min-height: 56px;
  padding: 0 24px 0 18px;
  color: #fff;
  border-color: rgba(4, 84, 63, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  box-shadow: 0 14px 30px rgba(8, 122, 91, 0.24);
  list-style: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ask-price-menu summary::-webkit-details-marker {
  display: none;
}

.ask-price-menu summary:hover,
.ask-price-menu summary:focus-visible {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #063f32, #0b8d69);
  box-shadow: 0 18px 36px rgba(8, 122, 91, 0.28);
  transform: translateY(-1px);
}

.ask-price-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.ask-price-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ask-price-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.ask-price-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.ask-price-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(17, 18, 15, 0.16);
}

.ask-price-options a,
.ask-price-options button {
  min-height: 42px;
  justify-content: flex-start;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.ask-price-options a:hover,
.ask-price-options a:focus-visible,
.ask-price-options button:hover,
.ask-price-options button:focus-visible {
  background: var(--soft);
}

.ask-price-options button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.62;
}

.detail-actions > a {
  color: #fff;
  border-color: var(--emerald);
  background: var(--emerald);
  box-shadow: 0 12px 28px rgba(8, 122, 91, 0.18);
}

.detail-actions button {
  box-shadow: 0 10px 24px rgba(17, 18, 15, 0.06);
}

.detail-theme-gold .detail-summary {
  background:
    linear-gradient(135deg, rgba(191, 139, 36, 0.16), rgba(8, 122, 91, 0.04) 58%),
    #fff;
}

.detail-theme-fashion .detail-summary {
  background:
    linear-gradient(135deg, rgba(17, 18, 15, 0.05), rgba(8, 122, 91, 0.08)),
    #fff;
}

.detail-theme-tour .detail-summary {
  background:
    linear-gradient(135deg, rgba(8, 122, 91, 0.15), rgba(191, 139, 36, 0.08)),
    #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.similar-products {
  display: grid;
  gap: 18px;
  padding-top: 34px;
}

.similar-products[hidden] {
  display: none;
}

.similar-products .section-heading {
  align-items: end;
}

.similar-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.detail-side {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.detail-content h2 {
  order: 1;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.detail-side h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.detail-spec-grid {
  order: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.detail-spec-grid div {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 112px;
  border: 1px solid #e4e1d8;
  border-radius: 8px;
  background: #fff;
}

.detail-spec-grid div::before {
  content: none;
}

.detail-spec-grid span {
  min-height: 50px;
  padding: 16px 18px 12px;
  color: #121826;
  background: #f1f3f5;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.detail-spec-grid span::after {
  content: none;
}

.detail-spec-grid strong {
  display: block;
  padding: 16px 18px 18px;
  color: #344055;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

.detail-copy {
  order: 3;
  margin-top: 0;
  color: #344055;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.detail-custom-groups {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.detail-custom-group {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.detail-custom-group h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin: 0;
  padding: 0 18px;
  color: #121826;
  background: #f1f3f5;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.detail-custom-group h3 span {
  color: #6c7480;
  font-size: 24px;
  font-weight: 500;
}

.detail-custom-group > div {
  display: grid;
  gap: 8px;
  padding: 18px 18px 8px;
  color: #4b5565;
  background: #fff;
}

.detail-custom-group p {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.55;
}

.detail-custom-group p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #c7ced8;
}

.detail-custom-group--copy {
  margin-bottom: 12px;
}

.detail-custom-group--copy > div {
  padding-bottom: 18px;
}

.detail-custom-group--copy p {
  padding-left: 0;
}

.detail-custom-group--copy p::before {
  content: none;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
  position: sticky;
  top: 118px;
}

.detail-side > div {
  display: grid;
  gap: 0;
}

.detail-accordion {
  display: grid;
  gap: 10px;
}

.detail-accordion-panel {
  overflow: hidden;
  border-radius: 8px;
}

.detail-accordion-panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin: 0;
  padding: 0 18px;
  color: #121826;
  background: #f1f3f5;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.detail-accordion-panel h3 span {
  color: #6c7480;
  font-size: 22px;
  font-weight: 500;
}

.detail-accordion-panel p,
.detail-accordion-panel ul {
  margin: 0;
  padding: 16px 18px 6px;
  color: #4b5565;
  background: #fff;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.55;
}

.detail-accordion-panel ul {
  display: grid;
  gap: 5px;
  padding-left: 34px;
}

.detail-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.detail-benefits div {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 118px;
  padding: 20px;
  border: 0;
  border-radius: 8px;
  background: #f6f7f8;
}

.detail-benefits div:nth-child(1) {
  background: #fff1f1;
}

.detail-benefits div:nth-child(2) {
  background: #edf8ff;
}

.detail-benefits div:nth-child(3) {
  background: #ecfbf1;
}

.detail-benefits div:nth-child(4) {
  background: #fff8e7;
}

.detail-benefits strong {
  color: #121826;
  font-size: 18px;
  line-height: 1.2;
}

.detail-benefits span {
  color: #667085;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.seller-page {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 46px 26px 72px;
}

.seller-login-hero {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.seller-login-hero[hidden] {
  display: none;
}

.seller-login-intro,
.seller-login-card,
.seller-type-step,
.seller-onboarding,
.seller-profile > *,
.seller-review-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.seller-login-intro {
  display: grid;
  justify-items: center;
  width: min(100%, 920px);
  padding: 36px 34px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(10, 132, 92, 0.11), transparent 42%),
    linear-gradient(110deg, rgba(10, 132, 92, 0.06), rgba(201, 145, 31, 0.07)),
    #fff;
}

.seller-login-intro > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.seller-login-intro span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3f423b;
  font-size: 12px;
  font-weight: 900;
}

.seller-login-hero h1,
.seller-type-step h1,
.seller-onboarding h1,
.seller-profile h1,
.seller-review-state h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.seller-login-hero p,
.seller-type-step p,
.seller-form-head p,
.seller-profile-head p,
.seller-profile-grid p,
.seller-products-panel p,
.seller-review-state p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.45;
}

.seller-login-card {
  display: grid;
  align-content: start;
  gap: 16px;
  width: min(100%, 480px);
  padding: 34px;
  box-shadow: 0 22px 60px rgba(17, 18, 15, 0.08);
}

.seller-login-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.seller-login-card > p {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.seller-login-card label,
.seller-application-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.seller-login-card input,
.seller-application-form input,
.seller-application-form select,
.seller-application-form textarea,
.seller-share-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}

.seller-application-form textarea {
  padding-top: 14px;
  resize: vertical;
}

.seller-login-card > button,
.seller-submit-row button,
.seller-owner-actions button:first-child,
.seller-share-row button,
.seller-review-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--emerald);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.seller-login-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.seller-login-actions button,
.seller-form-head button,
.seller-back-login,
.seller-owner-actions button:not(:first-child) {
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.seller-back-login {
  margin-bottom: 18px;
}

[data-seller-login-status],
[data-seller-form-status] {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  font-weight: 850;
}

[data-seller-login-status][data-state="error"],
[data-seller-form-status][data-state="error"] {
  color: #b42318;
}

[data-seller-login-status][data-state="info"],
[data-seller-form-status][data-state="info"] {
  color: var(--emerald-dark);
}

.seller-login-card button:disabled,
.seller-application-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.seller-notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(10 12 10 / 62%);
}

.seller-notice {
  width: min(440px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgb(0 0 0 / 24%);
  text-align: center;
}

.seller-notice h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.05;
}

.seller-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.seller-notice button[data-seller-notice-ok] {
  width: min(180px, 100%);
  height: 54px;
  margin-top: 24px;
  border: 0 !important;
  border-radius: 8px;
  background: var(--emerald) !important;
  color: #fff !important;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.seller-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  width: min(440px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgb(12 132 92 / 18%);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgb(0 0 0 / 18%);
}

.seller-toast h2 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.2;
}

.seller-toast p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.seller-toast button {
  align-self: start;
  min-width: 68px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.seller-type-step,
.seller-onboarding,
.seller-review-state {
  padding: 34px;
}

.seller-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.seller-type-grid button {
  min-height: 120px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.seller-type-grid span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.seller-form-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.seller-form-head h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.seller-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seller-form-grid .wide {
  grid-column: 1 / -1;
}

.seller-category-select {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.seller-category-select h2,
.seller-profile-grid h2,
.seller-products-panel h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.12;
}

.seller-category-select p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 750;
}

[data-seller-categories] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

[data-seller-categories] label,
.seller-agree {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

[data-seller-categories] label[data-depth="1"] {
  padding-left: 22px;
  background: #fbfcfa;
}

[data-seller-categories] label[data-depth="2"] {
  padding-left: 34px;
  border-color: #d9e8df;
  background: #f7fbf8;
}

[data-seller-categories] label[data-depth="3"] {
  padding-left: 46px;
  border-color: #d6e2ee;
  background: #f6f9fc;
}

[data-seller-categories] label[data-depth="2"] span,
[data-seller-categories] label[data-depth="3"] span {
  font-size: 13px;
}

[data-seller-categories] input,
.seller-agree input {
  width: 18px;
  min-height: 18px;
}

.seller-agree {
  margin-top: 20px;
}

.seller-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.seller-profile {
  display: grid;
  gap: 22px;
}

.seller-profile-banner {
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 128, 96, 0.94), rgba(14, 17, 15, 0.94)),
    url("./assets/marketplace-hero.png") center / cover;
}

.seller-profile-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.seller-profile-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
}

.seller-logo-preview {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 42px;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

.seller-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-profile-head h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: clamp(36px, 5vw, 64px);
}

.verified-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0095f6;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.92), 0 4px 12px rgba(0,149,246,0.25);
}

.seller-status {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff7df;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-status.approved {
  color: var(--emerald);
  background: #e9f8f1;
}

.seller-status.cancelled {
  color: #b42318;
  background: #fff0ee;
}

.seller-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seller-contact-line span,
.seller-contact-line a,
.seller-category-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: #3f423b;
  font-size: 13px;
  font-weight: 800;
}

.seller-owner-actions {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.seller-owner-actions button:not(:first-child),
.seller-owner-actions a[data-seller-add-product] {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.seller-owner-actions a[data-seller-add-product] {
  display: grid;
  place-items: center;
  color: #fff;
  border-color: #1d4ed8;
  background: #2563eb;
  text-decoration: none;
}

.seller-owner-actions a[data-seller-add-product]:hover {
  background: #1d4ed8;
}

.seller-owner-actions a[data-seller-pins] {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 7px;
  color: #111;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.seller-owner-actions .seller-signout {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.28);
  background: #fff8f7;
}

.seller-pins-page {
  width: min(1120px, calc(100% - 36px));
  margin: 34px auto 80px;
}

.seller-pins-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.seller-pins-header span { color: var(--emerald); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.seller-pins-header h1 { margin: 4px 0; font-size: clamp(34px, 5vw, 58px); }
.seller-pins-header p { margin: 0; color: var(--muted); }
.seller-pins-header a { color: #111; font-weight: 800; }

.seller-pin-form {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(20, 20, 20, .07);
}

.seller-pin-type { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seller-pin-type button { min-height: 54px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); font-weight: 900; }
.seller-pin-type button.active { border-color: var(--emerald); color: #fff; background: var(--emerald); box-shadow: 0 8px 20px rgba(8, 122, 91, .22); }
.seller-pin-form > label { display: grid; gap: 8px; font-weight: 850; }
.seller-pin-form input[type="text"],
.seller-pin-form input[type="search"],
.seller-pin-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 9px; background: #fff; font: inherit; }
.seller-pin-upload { padding: 26px; border: 2px dashed #cfd4cc; border-radius: 13px; background: #fafbf9; }
.seller-pin-upload small { color: var(--muted); font-weight: 600; }
.seller-pin-previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.seller-pin-preview { position: relative; min-width: 0; }
.seller-pin-previews img,
.seller-pin-previews video { width: 100%; height: 160px; border-radius: 10px; background: #f2f2f2; object-fit: cover; }
.seller-pin-preview-remove { position: absolute; top: 7px; right: 7px; display: grid; place-items: center; width: 32px; height: 32px; padding: 0; border: 0; border-radius: 50%; color: #fff; background: rgba(0, 0, 0, .7); font-size: 23px; line-height: 1; backdrop-filter: blur(8px); }
.seller-pin-product-picker { display: grid; gap: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.seller-pin-product-picker h2 { margin: 0 0 4px; }
.seller-pin-product-picker p { margin: 0; color: var(--muted); }
.seller-pin-product-results { display: grid; gap: 9px; max-height: 430px; overflow: auto; }
.seller-pin-product-option { display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: center; padding: 9px; border: 1px solid var(--line); border-radius: 10px; background: #fff; text-align: left; }
.seller-pin-product-option.selected { border: 2px solid var(--emerald); background: #f2fbf7; }
.seller-pin-product-option img { width: 84px; height: 84px; border-radius: 8px; object-fit: cover; }
.seller-pin-product-option span { display: grid; gap: 6px; }
.seller-pin-product-option strong { font-size: 15px; }
.seller-pin-product-option small { color: var(--muted); line-height: 1.45; }
.seller-pin-actions { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1fr); gap: 12px; position: sticky; bottom: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, .96); box-shadow: 0 12px 35px rgba(17, 18, 15, .12); z-index: 4; }
.seller-pin-actions button { min-height: 56px; border-radius: 10px; font-weight: 900; cursor: pointer; }
.seller-pin-save { border: 1px solid var(--emerald); color: var(--emerald); background: #fff; }
.seller-pin-submit { border: 0; color: #fff; background: var(--emerald); }
.seller-pin-actions button:disabled { cursor: wait; opacity: .6; }
.seller-pin-status { min-height: 22px; margin: 0; font-weight: 800; }
.seller-pin-status[data-state="error"] { color: #b42318; }
.seller-pin-status[data-state="success"] { color: var(--emerald); }
.seller-pin-status[data-state="info"] { color: #175cd3; }

@media (max-width: 700px) {
  .seller-pins-header { align-items: start; flex-direction: column; }
  .seller-pin-product-option { grid-template-columns: 68px 1fr; }
  .seller-pin-product-option img { width: 68px; height: 68px; }
  .seller-pin-actions { grid-template-columns: 1fr; }
}

.pins-header-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.pins-header-link.active { color: var(--emerald); }

.pins-top-search {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.pins-top-search input { min-width: 0; padding: 0 16px; border: 0; outline: 0; font: inherit; }
.pins-top-search button { min-height: 46px; padding: 0 22px; border: 0; color: #fff; background: var(--emerald); font-weight: 900; }

.pins-page {
  min-height: 70vh;
  background: #fff;
}

.pins-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 32px;
  text-align: center;
}

.pins-hero > span { color: var(--emerald); font-size: 13px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.pins-hero h1 { margin: 10px 0 12px; font-size: clamp(42px, 7vw, 82px); letter-spacing: -.055em; line-height: .98; }
.pins-hero p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.6; }

.pins-filter-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.pins-filter-tabs button { min-width: 100px; min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; font-weight: 900; cursor: pointer; }
.pins-filter-tabs button.active { color: #fff; background: var(--ink); box-shadow: 0 7px 20px rgba(17, 18, 15, .18); }

.pins-feed { width: min(1280px, calc(100% - 32px)); margin: 0 auto; padding: 0 0 90px; }
.pins-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.pins-card { min-width: 0; cursor: pointer; outline: 0; }
.pins-card:focus-visible { box-shadow: 0 0 0 3px var(--emerald); }
.pins-card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--soft-strong); }
.pins-card-media > img,
.pins-card-media > video { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .4s ease; }
.pins-card:hover .pins-card-media > img,
.pins-card:hover .pins-card-media > video { transform: scale(1.035); }
.pins-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; gap: 5px; padding: 22px; color: #fff; opacity: 0; background: linear-gradient(transparent 38%, rgba(0, 0, 0, .76)); transition: opacity .25s ease; }
.pins-card:hover .pins-card-overlay,
.pins-card:focus-visible .pins-card-overlay { opacity: 1; }
.pins-card-overlay strong { font-size: clamp(15px, 1.6vw, 21px); }
.pins-card-overlay small { color: rgba(255, 255, 255, .78); font-weight: 800; }
.pins-video-mark,
.pins-multiple-mark { position: absolute; top: 14px; z-index: 2; display: grid; place-items: center; min-height: 30px; padding: 0 10px; border-radius: 999px; color: #fff; background: rgba(0, 0, 0, .58); font-size: 12px; font-weight: 950; backdrop-filter: blur(8px); }
.pins-video-mark { right: 14px; width: 30px; padding: 0; }
.pins-multiple-mark { left: 14px; }
.pins-card-caption { display: none; }
.pins-loader { padding: 32px; color: var(--muted); text-align: center; font-weight: 850; }
.pins-empty { padding: 80px 20px; text-align: center; }
.pins-empty strong { font-size: 28px; }
.pins-empty p { color: var(--muted); }

.pin-viewer { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.pin-viewer-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0, 0, 0, .82); backdrop-filter: blur(10px); }
.pin-viewer-dialog { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); width: min(1180px, 100%); max-height: min(860px, calc(100vh - 48px)); overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 35px 100px rgba(0, 0, 0, .42); }
.pin-viewer-close { position: absolute; top: 12px; right: 12px; z-index: 4; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(0, 0, 0, .58); font-size: 28px; cursor: pointer; }
.pin-viewer-media { display: grid; place-items: center; min-height: 640px; background: #090909; }
.pin-viewer-media img,
.pin-viewer-media video { width: 100%; height: 100%; max-height: min(860px, calc(100vh - 48px)); object-fit: contain; }
.pin-viewer-details { display: flex; flex-direction: column; padding: 48px 34px 30px; overflow: auto; }
.pin-viewer-details > span { color: var(--emerald); font-size: 12px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.pin-viewer-details h2 { margin: 10px 0 16px; font-size: 31px; line-height: 1.08; }
.pin-viewer-details p { margin: 0 0 24px; color: var(--muted); line-height: 1.7; white-space: pre-line; }
.pin-viewer-details > a { display: grid; place-items: center; min-height: 52px; margin-top: auto; padding: 0 18px; border-radius: 9px; color: #fff; background: var(--emerald); font-weight: 900; text-align: center; text-decoration: none; }
.pin-viewer-thumbs { display: flex; gap: 8px; margin: 24px 0; overflow-x: auto; }
.pin-viewer-thumbs button { flex: 0 0 58px; width: 58px; height: 58px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 8px; background: #111; color: #fff; }
.pin-viewer-thumbs button.active { border-color: var(--emerald); }
.pin-viewer-thumbs img { width: 100%; height: 100%; object-fit: cover; }
body.pin-viewer-open { overflow: hidden; }

@media (max-width: 820px) {
  .pins-top-search { order: 3; grid-column: 1 / -1; width: 100%; }
  .pins-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3px; }
  .pin-viewer { height: 100dvh; padding: 0; background: #000; }
  .pin-viewer-backdrop { background: #000; backdrop-filter: none; }
  .pin-viewer-dialog { display: block; width: 100%; height: 100dvh; max-height: none; overflow: hidden; border-radius: 0; background: #000; box-shadow: none; }
  .pin-viewer-close { top: max(14px, env(safe-area-inset-top)); right: 14px; width: 48px; height: 48px; background: rgba(0, 0, 0, .62); font-size: 34px; backdrop-filter: blur(10px); }
  .pin-viewer-media { position: absolute; inset: 0; min-height: 0; background: #000; }
  .pin-viewer-media img,
  .pin-viewer-media video { width: 100%; height: 100%; max-height: none; object-fit: contain; }
  .pin-viewer-details { position: absolute; inset: auto 0 0; z-index: 2; display: flex; max-height: 62dvh; padding: 120px 20px max(20px, env(safe-area-inset-bottom)); overflow-y: auto; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .82) 30%, #000 72%); }
  .pin-viewer-details > span { display: none; }
  .pin-viewer-details h2 { margin: 0 0 12px; color: #fff; font-size: clamp(22px, 6vw, 30px); }
  .pin-viewer-details p { display: -webkit-box; margin: 0 0 14px; overflow: hidden; color: rgba(255, 255, 255, .72); font-size: 17px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .pin-viewer-details > a { display: flex; flex: 0 0 auto; justify-content: space-between; min-height: 66px; margin-top: 12px; padding: 0 22px; border-radius: 18px; color: #050505; background: #fff; font-size: 18px; }
  .pin-viewer-details > a span:last-child { font-size: 26px; }
  .pin-viewer-thumbs { order: -1; margin: 0 0 14px; }
}

@media (max-width: 520px) {
  .pins-hero { width: calc(100% - 28px); padding-top: 44px; }
  .pins-hero p { font-size: 15px; }
  .pins-feed { width: 100%; }
  .pins-filter-tabs { width: 100%; }
  .pins-filter-tabs button { min-width: 0; padding: 0 10px; }
  .pins-card-overlay { display: none; }
  .pins-card-caption { display: grid; gap: 3px; padding: 9px 10px 15px; }
  .pins-card-caption strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
  .pins-card-caption span { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
}

.seller-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 22px;
}

.seller-import-url {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.seller-import-url h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.seller-import-url p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.seller-import-url form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.seller-import-url-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
}

.seller-import-url span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.seller-import-cosmetics-copy {
  position: relative;
  padding-left: 16px;
}

.seller-import-cosmetics-copy::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#b83280, #e8a1c5);
  content: "";
}

.seller-import-cosmetics-form button {
  border-color: #b83280;
  color: #fff;
  background: #b83280;
}

.seller-import-perfume-copy {
  position: relative;
  padding-left: 16px;
}

.seller-import-perfume-copy::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#111, #8b5e67);
  content: "";
}

.seller-import-perfume-form button {
  border-color: #111;
  color: #fff;
  background: #111;
}

.seller-import-travel-copy {
  position: relative;
  padding-left: 16px;
}

.seller-import-travel-copy::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#0b66c3, #29b6d1);
  content: "";
}

.seller-import-travel-form button {
  border-color: #0b66c3;
  color: #fff;
  background: #0b66c3;
}

.seller-import-electronics-copy {
  position: relative;
  padding-left: 16px;
}

.seller-import-electronics-copy::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#6b35d4, #2f7ee6);
  content: "";
}

.seller-import-electronics-form button {
  border-color: #5c36c8;
  color: #fff;
  background: #5c36c8;
}

.seller-import-watch-copy {
  position: relative;
  padding-left: 16px;
}

.seller-import-watch-copy::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(#1a253c, #b58a45);
  content: "";
}

.seller-import-watch-form button {
  border-color: #1a253c;
  color: #fff;
  background: #1a253c;
}

.seller-profile-grid > article,
.seller-profile-grid > aside,
.seller-products-panel {
  padding: 26px;
}

.seller-profile-grid h3 {
  margin: 24px 0 12px;
  font-size: 20px;
}

.seller-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seller-share-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.seller-share-row button[data-copied="true"] {
  background: var(--gold);
}

.seller-message-empty,
.seller-product-empty {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 850;
}

.seller-product-empty:empty {
  display: none;
}

.seller-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seller-product-card {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.seller-product-card:hover,
.seller-product-card:focus-within {
  border-color: rgba(8, 122, 91, 0.24);
  box-shadow: 0 12px 28px rgba(17, 18, 15, 0.08);
  transform: translateY(-2px);
}

.seller-product-card-main {
  display: block;
  color: inherit;
  text-decoration: none;
}

.seller-product-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.seller-product-card:hover .seller-product-card-actions,
.seller-product-card:focus-within .seller-product-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.seller-product-card-actions button {
  border: 1px solid rgba(17, 18, 15, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  padding: 9px 10px;
  box-shadow: 0 8px 18px rgba(17, 18, 15, 0.12);
}

.seller-product-card-actions button:hover,
.seller-product-card-actions button:focus-visible {
  border-color: rgba(8, 122, 91, 0.3);
  color: var(--emerald);
}

.seller-product-card-actions [data-seller-product-delete]:hover,
.seller-product-card-actions [data-seller-product-delete]:focus-visible {
  border-color: rgba(155, 36, 36, 0.22);
  color: #9b2424;
}

@media (hover: none) {
  .seller-product-card-actions {
    opacity: 1;
    transform: none;
  }
}

.seller-product-card-media {
  position: relative;
  background: #fff;
}

.seller-product-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: opacity 180ms ease, transform 180ms ease;
}

.seller-product-card-hover-image {
  position: absolute;
  inset: 0;
  height: 100%;
  background: #fff;
  opacity: 0;
}

.seller-product-card:hover .seller-product-card-hover-image,
.seller-product-card:focus-within .seller-product-card-hover-image {
  opacity: 1;
}

.seller-product-card-main.has-hover-image:hover .seller-product-card-media > img:not(.seller-product-card-hover-image),
.seller-product-card-main.has-hover-image:focus-within .seller-product-card-media > img:not(.seller-product-card-hover-image) {
  opacity: 0;
}

.seller-product-card:hover .seller-product-card-media img,
.seller-product-card:focus-within .seller-product-card-media img {
  transform: none;
}

.seller-product-card-media span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 9px;
  border-radius: 7px;
  color: #fff;
  background: rgba(17, 18, 15, 0.72);
  font-size: 12px;
  font-weight: 950;
}

.seller-product-card-body {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.seller-product-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.seller-product-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.seller-product-card em {
  color: var(--emerald);
  font-style: normal;
  font-weight: 950;
}

.seller-product-builder {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 18, 15, 0.06);
}

.seller-product-flow {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 126, 90, 0.08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.seller-product-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.seller-flow-back {
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  font-weight: 850;
}

.seller-product-flow-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: end;
  gap: 24px;
  padding: 8px 0 4px;
}

.seller-product-step-strip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.seller-product-step-strip span {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
}

.seller-product-step-strip span[data-active="true"] {
  color: #fff;
  background: var(--emerald);
}

.seller-product-flow-head h1 {
  margin: 0 0 8px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  max-width: 700px;
}

.seller-product-flow-head p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.seller-product-flow-head aside {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(0, 126, 90, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.seller-product-flow-head aside strong {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.seller-product-flow-head aside span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.seller-product-flow .seller-product-builder {
  padding: 24px;
}

.seller-product-builder-head {
  display: grid;
  gap: 5px;
}

.seller-product-builder-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.seller-product-builder-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.seller-product-builder-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.seller-product-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.seller-product-category-grid button {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fbfaf7;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.seller-product-category-grid button:hover,
.seller-product-category-grid button:focus-visible {
  border-color: rgba(0, 126, 90, 0.38);
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 18, 15, 0.07);
  transform: translateY(-1px);
}

.seller-product-category-grid button strong {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
}

.seller-product-category-grid button small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.seller-product-category-grid button[data-selected="true"] {
  color: #fff;
  border-color: var(--emerald);
  background: var(--emerald);
  box-shadow: 0 14px 32px rgba(0, 126, 90, 0.22);
}

.seller-product-category-grid button[data-selected="true"] small {
  color: rgba(255, 255, 255, 0.78);
}

.seller-product-subcategory {
  display: grid;
  gap: 16px;
  scroll-margin-top: 24px;
}

.seller-product-subcategory-panel {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.seller-product-subcategory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seller-product-detail-holder {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.seller-product-detail-holder[hidden] {
  display: none;
}

.seller-product-detail-form {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 18, 15, 0.08);
}

.seller-product-form-head {
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.seller-product-form-head span {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.seller-product-form-head h3,
.seller-product-next-form h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.seller-product-form-head p,
.seller-product-form-section > p,
.seller-product-next-form p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.seller-product-form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.seller-product-form-section h4 {
  margin: 0;
  font-size: 18px;
}

.seller-product-form-grid,
.seller-product-media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.seller-product-form-grid .wide {
  grid-column: 1 / -1;
}

.seller-product-detail-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.seller-product-detail-form [hidden] {
  display: none !important;
}

.seller-product-detail-form input,
.seller-product-detail-form select,
.seller-product-detail-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}

.seller-product-detail-form textarea {
  padding-top: 13px;
  resize: vertical;
}

.seller-product-detail-form select[multiple] {
  min-height: 128px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.seller-product-multi-options {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 86px;
  max-height: 190px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.seller-product-multi-options[data-loading="true"] {
  opacity: 0.65;
}

.seller-product-multi-option {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  width: auto;
  min-height: 34px;
  gap: 7px !important;
  padding: 7px 10px;
  border: 1px solid #d8e5dc;
  border-radius: 7px;
  background: #f8fbf9;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.1;
}

.seller-product-multi-option:hover,
.seller-product-multi-option:focus-within {
  border-color: var(--brand);
  background: #eef8f2;
}

.seller-product-multi-option input {
  width: 16px !important;
  min-height: 16px !important;
  height: 16px;
  margin: 0;
  padding: 0 !important;
  accent-color: var(--brand);
}

.seller-product-multi-option:has(input:checked) {
  border-color: var(--brand);
  background: #e8f6ee;
  color: var(--brand-dark);
}

.seller-product-media-list,
.seller-product-spec-list,
.seller-product-spec-values {
  display: grid;
  gap: 10px;
}

.seller-product-media-row,
.seller-product-spec-group {
  padding: 12px;
  border: 1px solid #e2ded4;
  border-radius: 8px;
  background: #fff;
}

.seller-product-media-row {
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  gap: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.seller-product-media-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 2px;
}

.seller-product-media-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--emerald);
  background: rgba(0, 126, 90, 0.1);
  font-size: 13px;
  font-weight: 950;
}

.seller-product-media-type {
  align-self: stretch;
}

.seller-product-media-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.seller-product-media-toolbar h5 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.seller-product-media-toolbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.seller-product-gallery-uploader {
  display: grid;
  gap: 12px;
}

.seller-product-gallery-drop {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px dashed rgba(0, 126, 90, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 126, 90, 0.1), transparent 44%),
    #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.seller-product-gallery-uploader[data-dragging="true"] .seller-product-gallery-drop,
.seller-product-gallery-drop:hover,
.seller-product-gallery-drop:focus-within {
  border-color: var(--emerald);
  background:
    linear-gradient(135deg, rgba(0, 126, 90, 0.16), transparent 48%),
    #fff;
  box-shadow: 0 18px 42px rgba(19, 30, 25, 0.11);
  transform: translateY(-1px);
}

.seller-product-gallery-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.seller-product-gallery-drop strong {
  max-width: 620px;
  font-size: 24px;
  line-height: 1.12;
}

.seller-product-gallery-drop small {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.seller-product-gallery-drop em {
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(0, 126, 90, 0.16);
  border-radius: 7px;
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.seller-product-gallery-list {
  display: grid;
  gap: 8px;
}

.seller-product-gallery-item {
  display: grid;
  grid-template-columns: 34px 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.seller-product-gallery-item > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: var(--emerald);
  background: rgba(0, 126, 90, 0.1);
  font-size: 13px;
  font-weight: 950;
}

.seller-product-gallery-thumb {
  width: 74px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.seller-product-gallery-thumb img,
.seller-product-gallery-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.seller-product-gallery-item strong {
  display: block;
  max-width: 100%;
  font-size: 14px;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-product-gallery-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.seller-product-file-card {
  position: relative;
  min-height: 154px;
  padding: 18px;
  border: 1px dashed #cfc7b8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 126, 90, 0.08), transparent 44%),
    #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.seller-product-file-card:hover,
.seller-product-file-card:focus-within {
  border-color: var(--emerald);
  box-shadow: 0 14px 36px rgba(19, 30, 25, 0.1);
  transform: translateY(-1px);
}

.seller-product-file-card input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.seller-product-file-card > :not(input[type="file"]) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.seller-product-file-kicker {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--emerald);
  background: rgba(0, 126, 90, 0.1);
  font-size: 12px;
  font-weight: 950;
}

.seller-product-file-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.seller-product-file-card small {
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.seller-product-file-card em {
  width: max-content;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(0, 126, 90, 0.16);
  border-radius: 7px;
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-product-file-preview {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.seller-product-file-card > .seller-product-file-actions * {
  pointer-events: auto;
}

.seller-product-file-card .seller-product-file-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.seller-product-file-card .seller-product-file-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(160, 35, 35, 0.2);
  border-radius: 7px;
  color: #9f2f2f;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.seller-product-file-card .seller-product-file-actions button:hover {
  border-color: rgba(160, 35, 35, 0.36);
  background: rgba(160, 35, 35, 0.06);
}

.seller-product-file-preview img,
.seller-product-file-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.seller-product-file-preview img {
  transition: transform 120ms ease;
}

.seller-product-row-actions,
.seller-product-review-row,
.seller-product-spec-key {
  display: flex;
  align-items: end;
  gap: 10px;
}

.seller-product-row-actions button,
.seller-product-light-button,
.seller-product-spec-group button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.seller-product-row-actions button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.seller-product-media-toolbar .seller-product-light-button {
  min-width: 190px;
}

.seller-product-spec-group {
  display: grid;
  gap: 12px;
}

.seller-product-spec-key {
  align-items: end;
}

.seller-product-spec-key label {
  flex: 1;
}

.seller-product-review-row {
  justify-content: space-between;
  padding-top: 4px;
}

.seller-product-review-row button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--emerald);
  font-size: 15px;
  font-weight: 950;
}

.seller-product-review-row span {
  color: var(--emerald);
  font-weight: 850;
}

.seller-product-next-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.seller-review-state {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-height: 360px;
  align-content: center;
}

[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form select,
[dir="rtl"] .contact-form textarea {
  text-align: right;
}

.site-footer {
  color: #fff;
  background: #0f1210;
}

.footer-main,
.footer-bottom {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 260px);
  gap: 34px;
  padding-top: 42px;
  padding-bottom: 34px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  line-height: 1.55;
}

.footer-main h3 {
  margin: 8px 0 16px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
}

.footer-main div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main a:not(.brand):not(.footer-seller) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
}

.footer-seller {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--gold);
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 1180px) {
  .header-top {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero::before {
    opacity: 0.28;
  }

  .hero::after {
    right: 26px;
    bottom: 32px;
    width: min(45vw, 500px);
    opacity: 0.46;
  }

  .hero-content {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .market-panel {
    max-width: 680px;
  }

  .listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.has-category-view #featured {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
  }

  body.has-category-view #featured .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seller-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-large {
    grid-column: span 2;
  }

  .service-grid,
  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-cta {
    grid-template-columns: 1fr auto;
  }

  .app-benefits {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 2;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .support-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-card.primary {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .header-top {
    padding: 12px 16px;
    max-width: 100vw;
    overflow: hidden;
    gap: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .top-search {
    width: 100%;
    max-width: calc(100vw - 32px);
    display: block;
    min-height: 42px;
  }

  .top-search input {
    width: 100%;
    min-width: 0;
    min-height: 42px;
  }

  .top-search button {
    display: none;
  }

  .top-search select {
    display: none;
  }

  .header-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .header-actions::-webkit-scrollbar,
  .category-nav::-webkit-scrollbar,
  .market-tabs::-webkit-scrollbar,
  .filters::-webkit-scrollbar {
    display: none;
  }

  .seller-link {
    min-width: max-content;
    padding: 0 14px;
  }

  .account-login-button {
    min-width: max-content;
  }

  .header-actions > a:not(.home-pins-link):not(.pins-header-link) {
    display: none;
  }

  .header-actions > .home-pins-link,
  .header-actions > .pins-header-link {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .category-nav {
    padding: 0 16px;
    max-width: 100vw;
    scrollbar-width: none;
  }

  .category-nav > a,
  .category-nav-link {
    min-height: 42px;
    padding: 0 14px;
  }

  body.has-category-view #featured {
    display: block;
    padding: 22px 16px 38px;
  }

  body.has-category-view #featured .section-heading {
    margin-left: 0;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  body.has-category-view #featured .section-heading h2 {
    font-size: 34px;
  }

  .category-filter-panel {
    float: none;
    position: static;
    width: auto;
    margin: 0 0 18px;
    padding: 14px;
    gap: 14px;
    box-shadow: 0 12px 34px rgba(17, 18, 15, 0.07);
  }

  .category-filter-head strong {
    font-size: 20px;
  }

  .category-filter-list,
  .category-filter-pills {
    display: flex;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .category-filter-list::-webkit-scrollbar,
  .category-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .category-filter-link,
  .category-filter-pills a {
    flex: 0 0 auto;
    min-height: 36px;
    white-space: nowrap;
  }

  body.has-category-view #featured .listing-grid {
    margin-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-hover-menu {
    left: 12px !important;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    z-index: 120;
  }

  .category-hover-panel {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .category-hover-title,
  .category-hover-link {
    min-height: 44px;
  }

  .category-hover-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
  }

  .category-hover-children,
  .category-hover-children--inline,
  .category-hover-children--flyout,
  .category-hover-menu[data-flyout-side="left"] .category-hover-children--flyout {
    position: static;
    inset: auto;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0 0 0 12px;
    margin: 2px 0 6px 18px;
    border: 0;
    border-left: 1px solid #e5dfd4;
    border-radius: 0;
    box-shadow: none;
  }

  .category-hover-row:hover > .category-hover-children,
  .category-hover-row:focus-within > .category-hover-children {
    display: none;
  }

  .category-hover-row.is-mobile-open > .category-hover-children {
    display: grid;
  }

  .category-hover-row.is-mobile-open > .category-hover-link {
    background: var(--soft);
  }

  .category-hover-row[data-depth="2"] .category-hover-link,
  .category-hover-row[data-depth="3"] .category-hover-link,
  .category-hover-row[data-depth="4"] .category-hover-link {
    min-height: 42px;
    padding-left: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    background: #11120f;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(9, 13, 12, 0.06), rgba(9, 13, 12, 0.46) 100%),
      url("./assets/marketplace-hero.png") 48% top / cover;
  }

  .hero-content {
    align-content: center;
    padding: 28px 16px;
    max-width: 100vw;
    overflow: hidden;
    min-height: 520px;
  }

  .market-panel,
  .market-tabs,
  .market-search {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .market-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .market-tabs button {
    flex: 0 0 auto;
    min-width: 88px;
  }

  .market-tabs button:first-child {
    min-width: 58px;
  }

  .market-panel {
    padding: 12px;
    background: rgba(255, 255, 255, 0.97);
  }

  .market-search input,
  .market-search select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 15px;
  }

  .market-search button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 16px;
    text-align: center;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

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

  .category-strip {
    display: none;
  }

  .section,
  .promo-grid,
  .contact-hero,
  .contact-shell,
  .support-details,
  .office-band,
  .legal-page,
  .support-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-page {
    padding-top: 42px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-meta {
    display: grid;
  }

  .support-page {
    padding-top: 28px;
  }

  .support-hero,
  .support-content-grid,
  .detail-hero,
  .detail-layout,
  .seller-login-hero,
  .seller-profile-head,
  .seller-profile-grid {
    grid-template-columns: 1fr;
  }

  .support-hero > div {
    min-height: auto;
    padding: 24px;
  }

  .support-hero p {
    font-size: 16px;
  }

  .support-main-content {
    padding: 22px;
  }

  .detail-page {
    padding: 22px 16px 40px;
  }

  body.page-loading main::before {
    width: calc(100% - 32px);
    min-height: 420px;
    margin: 22px auto 40px;
  }

  body.page-loading main::after {
    top: 178px;
    width: calc(100% - 68px);
    font-size: 38px;
  }

  .detail-loading {
    grid-template-columns: 1fr;
    min-height: 430px;
    padding: 28px;
  }

  .detail-loading-mark {
    width: 76px;
    height: 76px;
  }

  .detail-loading-mark span {
    width: 34px;
    height: 34px;
  }

  .detail-loading h1 {
    font-size: 38px;
  }

  .detail-loading p {
    font-size: 16px;
  }

  .detail-gallery,
  .detail-main-media img,
  .detail-main-media video {
    min-height: 330px;
  }

  .detail-gallery {
    grid-template-rows: auto auto;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-summary {
    padding: 22px;
  }

  .detail-content,
  .detail-side {
    padding: 0;
  }

  .detail-summary,
  .detail-side {
    position: static;
  }

  .detail-summary h1 {
    max-width: none;
    font-size: 40px;
  }

  .detail-summary > strong {
    font-size: 24px;
  }

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

  .ask-price-menu,
  .ask-price-menu summary,
  .ask-price-options {
    width: 100%;
  }

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

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

  .seller-page {
    padding: 22px 16px 42px;
  }

  .seller-login-hero > div,
  .seller-login-card,
  .seller-type-step,
  .seller-onboarding {
    padding: 22px;
  }

  .seller-login-hero h1,
  .seller-review-state h1 {
    font-size: 44px;
  }

  .seller-type-grid,
  .seller-form-grid,
  .seller-import-url,
  [data-seller-categories] {
    grid-template-columns: 1fr;
  }

  .seller-import-url form {
    grid-template-columns: 1fr;
  }

  .seller-form-head,
  .seller-submit-row,
  .seller-login-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seller-profile-banner,
  .seller-profile-banner img {
    min-height: 180px;
    height: 180px;
  }

  .seller-profile-head {
    align-items: start;
  }

  .seller-logo-preview {
    width: 92px;
    height: 92px;
    border-radius: 14px;
  }

  .seller-owner-actions {
    width: 100%;
  }

  .seller-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .seller-product-flow {
    padding: 18px;
  }

  .seller-product-flow-top,
  .seller-product-flow-head {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .seller-product-flow-top {
    flex-direction: column;
  }

  .seller-flow-back,
  .seller-product-step-strip {
    width: 100%;
  }

  .seller-product-step-strip {
    justify-content: space-between;
    overflow-x: auto;
  }

  .seller-product-flow-head h1 {
    font-size: 38px;
  }

  .seller-product-flow-head p {
    font-size: 17px;
  }

  .seller-product-builder-head h3 {
    font-size: 25px;
  }

  .seller-product-category-grid,
  .seller-product-subcategory-grid {
    grid-template-columns: 1fr;
  }

  .seller-product-detail-form,
  .seller-product-form-section {
    padding: 16px;
  }

  .seller-product-form-grid,
  .seller-product-cover-grid,
  .seller-product-media-row {
    grid-template-columns: 1fr;
  }

  .seller-product-row-actions,
  .seller-product-review-row,
  .seller-product-spec-key {
    align-items: stretch;
    flex-direction: column;
  }

  .seller-product-media-toolbar,
  .seller-product-media-head {
    align-items: stretch;
    flex-direction: column;
  }

  .seller-product-media-toolbar .seller-product-light-button {
    width: 100%;
  }

  .seller-product-gallery-drop {
    min-height: 190px;
    padding: 18px;
  }

  .seller-product-gallery-drop strong {
    font-size: 21px;
  }

  .seller-product-gallery-item {
    grid-template-columns: 32px 68px minmax(0, 1fr);
  }

  .seller-product-gallery-item .seller-product-row-actions {
    grid-column: 1 / -1;
  }

  .seller-product-gallery-thumb {
    width: 68px;
  }

  .seller-share-row {
    grid-template-columns: 1fr;
  }

  .seller-products-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 44px;
    overflow: hidden;
  }

  .contact-hero-copy {
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .contact-hero-copy p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .language-switcher {
    justify-self: start;
  }

  .contact-form-panel {
    padding: 20px;
  }

  .form-grid,
  .support-panel,
  .support-detail-grid,
  .office-band {
    grid-template-columns: 1fr;
  }

  .support-card.primary {
    grid-column: auto;
  }

  .support-panel {
    padding: 12px;
  }

  .section-heading,
  .section-heading > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    overflow-x: auto;
    max-width: 100%;
  }

  .listing-grid,
  .promo-grid,
  .stats-row,
  .collection-grid,
  .service-grid,
  .deal-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .listing-card div {
    padding: 10px;
  }

  .listing-card h3 {
    min-height: 54px;
    font-size: 14px;
  }

  .listing-card strong {
    font-size: 13px;
  }

  .collection-large {
    grid-column: auto;
    min-height: 300px;
  }

  .collection-card {
    min-height: 240px;
  }

  .collection-large strong {
    font-size: 22px;
  }

  .service-grid a,
  .deal-grid a {
    min-height: auto;
  }

  .stats-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-row div:last-child {
    border-bottom: 0;
  }

  .app-cta {
    margin-left: 18px;
    margin-right: 18px;
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .phone-preview {
    justify-content: flex-start;
  }

  .phone-preview > div {
    width: 100%;
    min-height: 126px;
    border-radius: 8px;
  }

  .footer-main,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
