.lux-business-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.lux-business-switch__copy strong,
.lux-business-switch small {
  display: block;
}

.lux-business-switch small {
  opacity: 0.72;
}

.lux-toggle-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}

.lux-toggle-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.lux-toggle-switch i {
  display: block;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #cbd5e1;
  position: relative;
  pointer-events: none;
  transition: background 0.16s ease;
}

.lux-toggle-switch i::after {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  top: 0.175rem;
  left: 0.175rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  transition: transform 0.16s ease;
}

.lux-toggle-switch input:checked + i {
  background: var(--lux-accent, #84c42a);
}

.lux-toggle-switch input:checked + i::after {
  transform: translateX(1.25rem);
}

.lux-toggle-switch input:focus-visible + i {
  outline: 2px solid color-mix(in srgb, var(--lux-accent, #84c42a) 55%, transparent);
  outline-offset: 2px;
}

.lux-register-company[hidden] {
  display: none !important;
}

.lux-username-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.lux-username-chip {
  border: 1px solid rgba(132, 196, 42, 0.45);
  border-radius: 999px;
  background: rgba(132, 196, 42, 0.1);
  color: inherit;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
}

/**
 * Scriptfabrik Lux — design tokens + components (parallel storefront only).
 * Stack: system-ui (SF Pro–like). No Bootstrap.
 */

:root {
  --lux-bg: #f5f5f7;
  --lux-surface: #ffffff;
  --lux-text: #1d1d1f;
  --lux-muted: #6e6e73;
  --lux-line: rgba(0, 0, 0, 0.08);
  --lux-accent: #0071e3;
  --lux-accent-hover: #0077ed;
  --lux-danger: #c41e3a;
  --lux-ok: #1b7f3a;
  --lux-radius: 16px;
  --lux-radius-sm: 12px;
  --lux-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --lux-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
  --lux-blur: saturate(180%) blur(20px);
  --lux-font: system-ui, -apple-system, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --lux-header-h: 64px;
  --lux-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --lux-dur: 0.38s;
}

html[data-ui-mode="dark"],
html[data-bs-theme="dark"] {
  --lux-bg: #000000;
  --lux-surface: #1c1c1e;
  --lux-text: #f5f5f7;
  --lux-muted: #a1a1a6;
  --lux-line: rgba(255, 255, 255, 0.12);
  --lux-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --lux-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

html[data-ui-mode="light"],
html[data-bs-theme="light"] {
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lux-body {
  --lux-accent: #1e3a8a;
  --lux-accent-hover: #172554;
  --lux-sticky-below-chrome: calc(var(--lux-header-h) + 0.75rem);
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--lux-font);
  background: var(--lux-bg);
  color: var(--lux-text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 900px) {
  body.lux-body[data-lux-page="marketplace"] {
    --lux-sticky-below-chrome: calc(72px + 0.85rem);
  }

  body.lux-body[data-lux-page="marketplace"]:has(.sf-storefront-topbar) {
    --lux-sticky-below-chrome: calc(34px + 72px + 0.85rem);
  }
}

@media (max-width: 899px) {
  body.lux-body[data-lux-page="marketplace"] {
    --lux-sticky-below-chrome: calc(var(--lux-header-h) + 0.65rem);
  }
}

.lux-main {
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: 2rem;
}

body.lux-body[data-lux-page="account"] .lux-main {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

body.lux-body[data-lux-page="account"]:has(.sf-storefront-topbar) {
  --lux-sticky-below-chrome: calc(34px + var(--lux-header-h) + 0.75rem);
}

/* Hilfe-Center & Content: Sticky-Sidebars unter voller Storefront-Chrome (Topbar + Header) */
@media (min-width: 900px) {
  body.lux-body[data-lux-page="content"],
  body.lux-body[data-lux-page="home"],
  body.lux-body:has(.lux-portal--help) {
    --lux-sticky-below-chrome: calc(72px + 0.85rem);
  }
}

@media (min-width: 992px) {
  body.lux-body[data-lux-page="content"]:has(.lux-chrome .sf-storefront-topbar),
  body.lux-body[data-lux-page="home"]:has(.lux-chrome .sf-storefront-topbar),
  body.lux-body:has(.lux-portal--help):has(.lux-chrome .sf-storefront-topbar) {
    --lux-sticky-below-chrome: calc(34px + 72px + 0.85rem);
  }
}

/* —— Header —— */
.lux-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--lux-header-h);
  display: flex;
  align-items: center;
  transition: background var(--lux-dur) var(--lux-ease), box-shadow var(--lux-dur) var(--lux-ease);
  background: transparent;
}

.lux-header.is-solid {
  background: color-mix(in srgb, var(--lux-surface) 82%, transparent);
  backdrop-filter: var(--lux-blur);
  -webkit-backdrop-filter: var(--lux-blur);
  box-shadow: 0 1px 0 var(--lux-line);
}

@supports not (background: color-mix(in srgb, white 50%, transparent)) {
  .lux-header.is-solid {
    background: rgba(255, 255, 255, 0.86);
  }
  html[data-ui-mode="dark"] .lux-header.is-solid,
  html[data-bs-theme="dark"] .lux-header.is-solid {
    background: rgba(28, 28, 30, 0.9);
  }
}

.lux-header__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lux-logo {
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lux-logo__img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 46vw);
}

.lux-header--storefront .lux-iconbtn {
  width: 50px;
  height: 50px;
}

.lux-header--storefront .lux-iconbtn svg {
  width: 22px;
  height: 22px;
}

.lux-header--storefront .lux-nav {
  gap: 0.35rem;
}

@media (max-width: 899px) {
  body.lux-body {
    --lux-header-h: 112px;
  }

  .lux-chrome {
    --lux-sticky-below-chrome: calc(112px + 0.65rem);
    padding-top: env(safe-area-inset-top, 0);
    overflow: visible;
  }

  .lux-header.lux-header--storefront {
    height: auto;
    min-height: 0;
    align-items: stretch;
    overflow: visible;
  }

  .lux-chrome .lux-header--storefront {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .lux-header--storefront .lux-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo nav"
      "search search";
    gap: 0.45rem 0.35rem;
    align-items: center;
    padding: 0.55rem 0.65rem 0.55rem;
    overflow: visible;
  }

  .lux-header--storefront .lux-logo {
    grid-area: logo;
    min-width: 0;
  }

  .lux-header--storefront .lux-nav {
    grid-area: nav;
    justify-self: end;
    align-self: center;
    overflow: visible;
    padding-top: 2px;
  }

  .lux-header--storefront .lux-header__search-row {
    grid-area: search;
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    min-width: 0;
  }

  .lux-header--storefront .lux-header__search-row .lux-search {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .lux-header--storefront .lux-search__input {
    height: 40px;
    font-size: 0.9rem;
  }

  .lux-logo__img {
    height: 40px;
    max-width: 48vw;
  }

  .lux-header--storefront .lux-iconbtn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .lux-header--storefront .lux-iconbtn svg {
    width: 19px;
    height: 19px;
  }

  .lux-header--storefront .lux-iconbtn .bi {
    font-size: 1.05rem;
  }

  .lux-header--storefront .lux-iconbtn .lux-badge.lux-badge--dot {
    top: 1px;
    right: -1px;
    min-width: 15px;
    height: 15px;
    font-size: 0.56rem;
  }

  .lux-header--storefront .lux-cart-link__icon .lux-badge.lux-badge--dot {
    top: 1px;
    right: -1px;
  }

  .lux-header--storefront .lux-nav {
    gap: 0.1rem;
  }

  .lux-header--storefront .lux-nav__hide-mobile {
    display: none !important;
  }

  .lux-account-trigger {
    min-height: 40px;
    padding: 0;
    gap: 0;
  }

  .lux-account-trigger__avatar {
    width: 34px;
    height: 34px;
  }

  .lux-account-trigger__avatar .sf-seller-avatar {
    width: 34px;
    height: 34px;
  }

  .lux-account-trigger__avatar .sf-seller-avatar__initial,
  .lux-account-trigger__avatar i {
    font-size: 0.92rem;
  }

  .lux-cart-link--has-copy {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    width: auto;
    min-width: 36px;
    padding: 0.05rem 0.12rem 0;
    gap: 0;
  }

  .lux-cart-link--has-copy .lux-cart-link__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }

  .lux-cart-link--has-copy .lux-cart-link__label {
    display: none !important;
  }

  .lux-cart-link--has-copy .lux-cart-link__price {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 1px;
    max-width: 52px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lux-cart-link--has-copy .lux-cart-link__icon {
    width: 34px;
    height: 34px;
  }

  body.lux-body[data-lux-page="account"] .lux-main {
    padding-top: 1.35rem;
  }

  body.lux-body[data-lux-page="account"] .lux-main > .lux-account-hero {
    margin-top: 0.25rem;
  }

  .lux-cart-menu.is-open .lux-cart-panel {
    position: fixed;
    top: auto;
    left: 50%;
    right: auto;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: min(22rem, calc(100vw - 1.25rem));
    max-height: min(70vh, 28rem);
    z-index: 1300;
  }

  body.lux-body[data-lux-page="content"] .lux-main,
  body.lux-body .lux-main:has(.lux-portal--help) {
    padding-top: 0.5rem;
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }

  body.lux-body .lux-portal--help.lux-section {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0.65rem;
    box-sizing: border-box;
  }

  body.lux-body .lux-portal--help .pf-portal-hero {
    padding: 1rem 0.85rem;
    margin: 0 0 0.85rem;
    border-radius: 14px;
    overflow: hidden;
  }

  body.lux-body .lux-portal--help .pf-portal-hero > .container,
  body.lux-body .lux-portal--help .pf-portal-body > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  body.lux-body .lux-portal--help .pf-portal-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 0.65rem;
    align-items: start;
  }

  body.lux-body .lux-portal--help .pf-portal-hero__icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }

  body.lux-body .lux-portal--help .pf-portal-hero__title {
    font-size: 1.45rem;
  }

  body.lux-body .lux-portal--help .pf-portal-hero__lead {
    font-size: 0.92rem;
    max-width: none;
  }

  body.lux-body .lux-portal--help .pf-portal-hero__stats {
    grid-column: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
  }

  body.lux-body .lux-portal--help .pf-portal-stat {
    flex: 1 1 0;
    min-width: 0;
  }

  body.lux-body .lux-portal--help .pf-portal-hero__search {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  body.lux-body .lux-portal--help .pf-help-search__bar {
    flex-wrap: wrap;
    align-items: center;
    min-height: auto;
    border-radius: 14px;
    padding: 0.35rem;
  }

  body.lux-body .lux-portal--help .pf-help-search__icon {
    width: 2.35rem;
  }

  body.lux-body .lux-portal--help .pf-help-search__input {
    flex: 1 1 calc(100% - 2.35rem);
    min-width: 0;
    font-size: 0.95rem;
  }

  body.lux-body .lux-portal--help .pf-help-search__submit {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
  }

  body.lux-body .lux-portal--help .pf-portal-body {
    padding-bottom: 1.5rem;
  }

  body.lux-body .lux-floating-widgets {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    justify-content: flex-start;
    z-index: 10040;
  }

  body.lux-body .lux-floating-widgets--a11y-right {
    left: auto;
    right: 0.75rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    justify-content: flex-end;
    padding-bottom: 0;
  }

  body.lux-body .lux-floating-widgets--a11y-right:has(.pf-help-chat) {
    left: 0.75rem;
    right: 0.75rem;
    top: auto;
    bottom: 0;
    transform: none;
    justify-content: space-between;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  }

  body.lux-body .lux-floating-widgets:has(.pf-help-chat) {
    justify-content: space-between;
  }

  body.lux-body .pf-help-chat {
    position: static;
    flex-shrink: 0;
  }

  body.lux-body .pf-help-chat__panel {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px)) !important;
    width: min(360px, calc(100vw - 1.25rem)) !important;
    max-height: min(68vh, 420px);
    z-index: 10050 !important;
    transform: translateX(-50%) translateY(12px) !important;
  }

  body.lux-body .pf-help-chat__panel.is-open {
    transform: translateX(-50%) translateY(0) !important;
  }

  body.lux-body .grecaptcha-badge {
    z-index: 2147483647 !important;
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px)) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.lux-body .lux-footer--storefront {
    z-index: 1;
  }

  body.lux-body[data-lux-page="auth"] .lux-main {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  body.lux-body[data-lux-page="auth"] .sf-recaptcha-v2 {
    position: relative;
    z-index: 5;
    margin-bottom: 0.75rem;
  }
}

.lux-header__search-row {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 640px;
  margin: 0 auto;
  min-width: 0;
  position: relative;
  z-index: 120;
}

.lux-header__search-row .lux-search {
  flex: 1 1 auto;
  max-width: none;
  margin: 0;
}

.lux-search {
  flex: 1 1 auto;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.lux-search__input {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  padding: 0 1.1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lux-search__input:focus {
  border-color: color-mix(in srgb, var(--lux-accent) 40%, var(--lux-line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lux-accent) 18%, transparent);
}

.lux-search__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--lux-surface);
  border-radius: var(--lux-radius-sm);
  box-shadow: var(--lux-shadow-hover);
  border: 1px solid var(--lux-line);
  overflow: hidden;
  z-index: 40;
  max-height: 320px;
  overflow-y: auto;
}

.lux-search__hit {
  display: block;
  padding: 0.75rem 1rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.lux-search__hit:hover,
.lux-search__hit:focus-visible {
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
}

.lux-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lux-iconbtn {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.lux-iconbtn .lux-badge.lux-badge--dot {
  position: absolute;
  top: 3px;
  right: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: #3b82f6;
  color: #fff;
  border: 0;
  outline: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.lux-iconbtn:hover {
  background: color-mix(in srgb, var(--lux-text) 6%, transparent);
}

.lux-burger {
  display: inline-flex;
}

@media (min-width: 900px) {
  .lux-burger {
    display: none;
  }
}

/* —— Drawer —— */
.lux-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lux-drawer-backdrop[hidden] {
  display: none !important;
}

.lux-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 320px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: var(--lux-surface);
  backdrop-filter: var(--lux-blur);
  -webkit-backdrop-filter: var(--lux-blur);
  border-left: 1px solid var(--lux-line);
  padding: 0;
  transform: translateX(0);
  box-shadow: -14px 0 42px rgba(15, 23, 42, 0.16);
  animation: lux-drawer-in 0.32s var(--lux-ease);
}

.lux-drawer[hidden] {
  display: none !important;
}

body.lux-drawer-open .lux-drawer-backdrop.is-open {
  z-index: 520;
}

body.lux-drawer-open .lux-drawer.is-open {
  z-index: 530;
}

@keyframes lux-drawer-in {
  from {
    transform: translateX(100%);
    opacity: 0.6;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* —— Account, forms and data surfaces —— */
.lux-section,
.lux-pagehead,
.lux-account-hero,
.lux-auth {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
}

.lux-section--narrow {
  max-width: min(1120px, calc(100% - 2rem));
}

.lux-auth {
  min-height: calc(100vh - var(--lux-header-h) - 10rem);
  display: grid;
  place-items: center;
}

.lux-auth--wide .lux-auth__card {
  max-width: 760px;
}

.lux-auth__card,
.lux-panel,
.lux-account-tile,
.lux-list-card {
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
}

.lux-auth__card {
  width: min(100%, 520px);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.lux-panel .sf-password-policy-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.sf-password-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: var(--lux-muted);
}

.sf-password-policy-item:last-child {
  margin-bottom: 0;
}

.sf-password-policy-icon {
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--lux-muted) 45%, transparent);
  background: var(--lux-surface);
  position: relative;
}

.sf-password-policy-item.is-pass {
  color: #166534;
}

.sf-password-policy-item.is-pass .sf-password-policy-icon {
  border-color: #22c55e;
  background: #22c55e;
}

.sf-password-policy-item.is-pass .sf-password-policy-icon::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.12rem;
  width: 0.35rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sf-password-policy-item.is-fail {
  color: #b91c1c;
}

.sf-password-policy-item.is-fail .sf-password-policy-icon {
  border-color: #ef4444;
  background: #fef2f2;
}

.sf-password-policy-item.is-fail .sf-password-policy-icon::before,
.sf-password-policy-item.is-fail .sf-password-policy-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.55rem;
  height: 2px;
  background: #ef4444;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sf-password-policy-item.is-fail .sf-password-policy-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lux-auth__links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lux-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.lux-text-center {
  text-align: center;
}

.lux-text-start {
  text-align: start;
}

.lux-mt-3 {
  margin-top: 1rem;
}

body.lux-body[data-lux-page="auth"] {
  background: var(--lux-bg);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="auth"] .lux-auth__card,
body.lux-body[data-lux-page="auth"] .lux-panel {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

body.lux-body[data-lux-page="auth"] .lux-panel--soft {
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
}

body.lux-body[data-lux-page="auth"] .lux-input,
body.lux-body[data-lux-page="auth"] .lux-select {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="auth"] .lux-input::placeholder {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="auth"] .lux-field a,
body.lux-body[data-lux-page="auth"] .lux-auth__links a,
body.lux-body[data-lux-page="auth"] .lux-muted a,
body.lux-body[data-lux-page="auth"] .lux-auth-premium__links a {
  color: var(--lux-accent);
  text-decoration: none;
}

body.lux-body[data-lux-page="auth"] .lux-muted a:hover,
body.lux-body[data-lux-page="auth"] .lux-auth-premium__links a:hover,
body.lux-body[data-lux-page="auth"] .lux-field a:hover {
  text-decoration: underline;
}

body.lux-body[data-lux-page="auth"] .lux-btn--primary {
  background: var(--lux-accent);
}

body.lux-body[data-lux-page="auth"] .lux-btn--primary:hover {
  background: var(--lux-accent-hover);
}

body.lux-body[data-lux-page="auth"] .lux-business-switch {
  border-color: var(--lux-line);
  background: color-mix(in srgb, var(--lux-text) 4%, var(--lux-surface));
}

body.lux-body[data-lux-page="auth"] .lux-username-chip {
  border-color: rgba(132, 196, 42, 0.45);
  background: rgba(132, 196, 42, 0.12);
  color: #d9f99d;
}

body.lux-body[data-lux-page="auth"] .sf-password-policy-item {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="auth"] .sf-password-policy-icon {
  border-color: rgba(148, 163, 184, 0.45);
  background: var(--lux-surface);
}

body.lux-body[data-lux-page="auth"] .sf-password-policy-item.is-pass {
  color: #86efac;
}

body.lux-body[data-lux-page="auth"] .sf-password-policy-item.is-fail {
  color: #fca5a5;
}

body.lux-body[data-lux-page="auth"] .sf-password-policy-item.is-fail .sf-password-policy-icon {
  background: rgba(239, 68, 68, 0.15);
}

body.lux-body[data-lux-page="account"] {
  background: var(--lux-bg);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-account-hero,
body.lux-body[data-lux-page="account"] .lux-pagehead,
body.lux-body[data-lux-page="account"] .lux-section {
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-account-hero--premium {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.15rem, 2.8vw, 1.55rem);
  border-radius: 18px;
  border: 1px solid var(--lux-line);
  box-shadow: var(--lux-shadow);
  background:
    radial-gradient(circle at 92% 8%, rgba(30, 58, 138, 0.08), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}

body.lux-body[data-lux-page="account"] .lux-account-hero__head {
  display: grid;
  gap: 0.25rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__identity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__who {
  min-width: 0;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__email {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--lux-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__greeting .ab-seller-feedback-badge {
  margin-left: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lux-muted);
  text-decoration: none;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__greeting .ab-seller-feedback-star {
  color: #facc15;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-account-hero__title {
  margin: 0 0 0.4rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__greeting {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-account-hero__intro {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--lux-line);
  color: var(--lux-muted);
  line-height: 1.55;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0;
  flex: 0 1 auto;
}

body.lux-body[data-lux-page="account"] .lux-btn--primary {
  background: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-btn--primary:hover {
  background: var(--lux-accent-hover);
}

body.lux-body[data-lux-page="account"] .lux-account-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
}

body.lux-body[data-lux-page="account"] .lux-account-section__title {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-account-tile,
body.lux-body[data-lux-page="account"] .lux-panel,
body.lux-body[data-lux-page="account"] .lux-list-card,
body.lux-body[data-lux-page="account"] .lux-card {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  box-shadow: none;
}

body.lux-body[data-lux-page="account"] .lux-account-tile {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

body.lux-body[data-lux-page="account"] .lux-account-tile:hover {
  border-color: rgba(147, 197, 253, 0.32);
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  transform: translateY(-1px);
}

body.lux-body[data-lux-page="account"] .lux-account-tile strong {
  color: var(--lux-text);
  font-size: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-list-card {
  display: grid;
  gap: 0.35rem;
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-line);
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.lux-body[data-lux-page="account"] .lux-list-card:hover {
  border-color: rgba(147, 197, 253, 0.28);
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
}

body.lux-body[data-lux-page="account"] .lux-list-card strong {
  color: var(--lux-text);
  font-size: 0.98rem;
}

body.lux-body[data-lux-page="account"] .lux-list-card span {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-recent-auctions {
  display: grid;
  gap: 0.55rem;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction:hover {
  border-color: rgba(147, 197, 253, 0.28);
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
}

body.lux-body[data-lux-page="account"] .lux-recent-auction__title {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--lux-text);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction__meta {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction__chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--lux-muted);
  white-space: nowrap;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction__chip strong {
  color: var(--lux-text);
  font-weight: 600;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction__chip--price strong {
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-recent-auction__label {
  color: var(--lux-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.lux-body[data-lux-page="account"] .lux-badge--auction-active {
  background: color-mix(in srgb, #22c55e 18%, var(--lux-surface));
  color: #16a34a;
}

body.lux-body[data-lux-page="account"] .lux-badge--auction-scheduled {
  background: color-mix(in srgb, #3b82f6 18%, var(--lux-surface));
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-badge--auction-ended {
  background: color-mix(in srgb, #94a3b8 18%, var(--lux-surface));
  color: var(--lux-muted);
}

@media (max-width: 900px) {
  body.lux-body[data-lux-page="account"] .lux-recent-auction {
    flex-direction: column;
    align-items: flex-start;
  }

  body.lux-body[data-lux-page="account"] .lux-recent-auction__meta {
    flex-wrap: wrap;
    width: 100%;
  }
}

body.lux-body[data-lux-page="account"] .lux-account-tile span {
  color: var(--lux-muted);
  line-height: 1.45;
}

body.lux-body[data-lux-page="account"] .lux-account-tile--accent {
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
}

body.lux-body[data-lux-page="account"] .lux-account-tile--accent:hover {
  border-color: color-mix(in srgb, var(--lux-accent) 45%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
}

body.lux-body[data-lux-page="account"] .lux-input,
body.lux-body[data-lux-page="account"] .lux-select {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-table th {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-table td {
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-muted {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-btn--ghost {
  border-color: var(--lux-line);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-empty {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-account-back {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}

body.lux-body[data-lux-page="account"] .lux-account-back a {
  color: var(--lux-accent);
  text-decoration: none;
}

body.lux-body[data-lux-page="account"] .lux-account-back a:hover {
  text-decoration: underline;
}

body.lux-body[data-lux-page="account"] .lux-main > .lux-panel,
body.lux-body[data-lux-page="account"] .lux-main > .lux-flash,
body.lux-body[data-lux-page="account"] .lux-main > .lux-kpi-row,
body.lux-body[data-lux-page="account"] .lux-main > .lux-split,
body.lux-body[data-lux-page="account"] .lux-main > .lux-cart-page,
body.lux-body[data-lux-page="account"] .lux-main > .lux-msg-layout,
body.lux-body[data-lux-page="account"] .lux-main > .lux-profile,
body.lux-body[data-lux-page="account"] .lux-main > .lux-account-hero,
body.lux-body[data-lux-page="account"] .lux-main > .lux-notifications-premium,
body.lux-body[data-lux-page="account"] .lux-main > .lux-order-page,
body.lux-body[data-lux-page="account"] .lux-main > .lux-notif-kpis {
  width: min(1120px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.lux-verification-page {
  width: min(640px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-main > .lux-pagehead + .lux-verification-page {
  margin-top: -0.25rem;
}

.lux-verification-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.lux-verification-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.92rem;
  line-height: 1.45;
}

.lux-verification-benefits .bi {
  color: var(--lux-accent, #2563eb);
  margin-top: 0.1rem;
}

.lux-form--verification .lux-actions {
  margin-top: 0.35rem;
}

.lux-form--verification .lux-btn--primary {
  width: auto;
  min-width: 12rem;
}

.lux-verification-uploads {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

.lux-verification-uploads-title {
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.sf-vsteps {
  --sf-vstep-upcoming: #94a3b8;
  --sf-vstep-active: #2563eb;
  --sf-vstep-done: #16a34a;
  --sf-vstep-rejected: #dc2626;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.sf-vsteps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  min-width: 0;
}

.sf-vsteps__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--sf-vstep-upcoming);
  color: var(--sf-vstep-upcoming);
  background: #fff;
  z-index: 1;
}

.sf-vsteps__item--active .sf-vsteps__marker {
  border-color: var(--sf-vstep-active);
  background: var(--sf-vstep-active);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.sf-vsteps__item--done .sf-vsteps__marker {
  border-color: var(--sf-vstep-done);
  background: var(--sf-vstep-done);
  color: #fff;
}

.sf-vsteps__item--rejected .sf-vsteps__marker {
  border-color: var(--sf-vstep-rejected);
  background: var(--sf-vstep-rejected);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.sf-vsteps__label {
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 600;
  color: #64748b;
  max-width: 7.5rem;
}

.sf-vsteps__item--active .sf-vsteps__label {
  color: var(--sf-vstep-active);
}

.sf-vsteps__item--done .sf-vsteps__label {
  color: var(--sf-vstep-done);
}

.sf-vsteps__item--rejected .sf-vsteps__label {
  color: var(--sf-vstep-rejected);
}

.sf-vsteps__line {
  position: absolute;
  top: 1rem;
  left: calc(50% + 1rem);
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--sf-vstep-upcoming);
  z-index: 0;
}

.sf-vsteps__line--done {
  background: var(--sf-vstep-done);
}

.sf-vsteps__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.sf-vsteps__alert .bi {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sf-vsteps__alert--review {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.sf-vsteps__alert--verified {
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.sf-vsteps__alert--rejected {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

@media (max-width: 480px) {
  .sf-vsteps__label {
    font-size: 0.7rem;
    max-width: 5.5rem;
  }

  .sf-vsteps__marker {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }
}

body.lux-body[data-lux-page="account"] .lux-main > .lux-panel {
  margin-bottom: 1.25rem;
}

body.lux-body[data-lux-page="account"] .lux-main > .lux-flash {
  margin-bottom: 0.85rem;
}

body.lux-body[data-lux-page="account"] .lux-pagehead .lux-eyebrow {
  color: var(--lux-accent);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

body.lux-body[data-lux-page="account"] .lux-muted a {
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-list-toolbar__filters a {
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-table-wrap {
  overflow-x: auto;
}

body.lux-body[data-lux-page="account"] .lux-empty {
  border: 1px dashed var(--lux-line);
  border-radius: var(--lux-radius-sm);
  background: color-mix(in srgb, var(--lux-text) 2%, var(--lux-surface));
  padding: 1.5rem 1rem;
}

body.lux-body[data-lux-page="account"] .lux-panel__head {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--lux-line);
  margin-bottom: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-list-toolbar {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lux-line);
}

body.lux-body[data-lux-page="account"] .lux-panel__body hr,
body.lux-body[data-lux-page="account"] .lux-panel__body .lux-divider {
  width: 100%;
  height: 0;
  margin: 0.65rem 0;
  border: 0;
  border-top: 1px solid var(--lux-line);
  opacity: 1;
}

body.lux-body[data-lux-page="account"] .lux-watchlist-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  background: var(--lux-surface);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--lux-surface);
  color: var(--lux-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card__body .lux-h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.35;
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card__body p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

body.lux-body[data-lux-page="account"] .lux-empty--watchlist {
  text-align: center;
}

body.lux-body[data-lux-page="account"] .lux-empty--watchlist i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-account-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lux-line);
}

body.lux-body[data-lux-page="account"] .lux-account-pagination__status {
  color: var(--lux-muted);
  font-size: 0.9rem;
}

body.lux-body[data-lux-page="account"] .lux-account-pagination .is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

body.lux-body[data-lux-page="account"] .lux-list-toolbar__filters a.is-active {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(30, 58, 138, 0.35);
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-list-toolbar__filter .lux-select {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  color: var(--lux-text);
}

body.lux-body dialog#sf-passkey-label-dialog {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  background: #0d1524;
  color: #f1f5f9;
  max-width: min(92vw, 26rem);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

body.lux-body dialog#sf-passkey-label-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

body.lux-body dialog#sf-passkey-label-dialog h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #f8fafc;
}

body.lux-body dialog#sf-passkey-label-dialog .lux-input {
  background: #0a101c;
  border-color: rgba(255, 255, 255, 0.14);
  color: #f1f5f9;
}

body.lux-body dialog#sf-passkey-label-dialog .lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-msg-layout {
  margin-bottom: 1.5rem;
}

body.lux-body[data-lux-page="account"] .lux-table th,
body.lux-body[data-lux-page="account"] .lux-table td {
  border-bottom-color: var(--lux-line);
}

.lux-form {
  display: grid;
  gap: 0.9rem;
}

.lux-form-grid,
.lux-split,
.lux-msg-layout {
  display: grid;
  gap: 1rem;
}

.lux-form-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.lux-split {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
}

.lux-msg-layout {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
}

.lux-panel {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.lux-panel--soft {
  background: color-mix(in srgb, var(--lux-accent) 7%, var(--lux-surface));
}

.lux-field {
  display: grid;
  gap: 0.35rem;
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.lux-input,
.lux-select {
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  background: var(--lux-surface);
  color: var(--lux-text);
  padding: 0.75rem 1rem;
  font: inherit;
  outline: none;
}

textarea.lux-input {
  border-radius: var(--lux-radius-sm);
  resize: vertical;
}

.lux-input--block,
.lux-select--block,
.lux-btn--block {
  width: 100%;
}

.lux-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lux-muted);
}

.lux-account-grid,
.lux-kpi-row {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
  display: grid;
  gap: 1rem;
}

.lux-account-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lux-account-tile,
.lux-list-card {
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.lux-account-tile {
  min-height: 126px;
  display: grid;
  align-content: space-between;
}

.lux-account-tile--accent {
  border-color: color-mix(in srgb, var(--lux-accent) 45%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 9%, var(--lux-surface));
}

.lux-account-tile span,
.lux-list-card span {
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.lux-kpi-row {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.lux-kpi-row:not(.lux-hero__kpis) > div {
  padding: 1rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
}

.lux-kpi-row:not(.lux-hero__kpis) > div > span {
  display: block;
  color: var(--lux-muted);
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.lux-notif-kpis {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.lux-notif-kpi {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.lux-notif-kpi.is-active {
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 6%, var(--lux-surface));
}

.lux-notif-kpi--unread.is-active {
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.06);
}

.lux-notif-kpi__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  font-size: 1.1rem;
  color: var(--lux-muted);
  background: color-mix(in srgb, var(--lux-text) 6%, var(--lux-surface));
}

.lux-notif-kpi--total.is-active .lux-notif-kpi__icon {
  color: var(--lux-accent);
  background: color-mix(in srgb, var(--lux-accent) 14%, var(--lux-surface));
}

.lux-notif-kpi--unread.is-active .lux-notif-kpi__icon {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
}

.lux-notif-kpi__copy {
  display: grid;
  gap: 0.1rem;
}

.lux-notif-kpi__value {
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--lux-text);
}

.lux-notif-kpi__label {
  font-size: 0.78rem;
  color: var(--lux-muted);
  font-weight: 600;
}

.lux-table-wrap {
  overflow-x: auto;
}

.lux-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.lux-table th,
.lux-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--lux-line);
  text-align: left;
}

.lux-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
  color: var(--lux-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.lux-empty {
  padding: 2rem 1.5rem;
  color: var(--lux-muted);
  text-align: center;
  border: 1px dashed color-mix(in srgb, var(--lux-muted) 35%, var(--lux-line));
  border-radius: var(--lux-radius);
  background: color-mix(in srgb, var(--lux-surface) 88%, transparent);
}

.lux-empty p {
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.55;
}

.lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lux-total-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem 1rem;
}

.lux-total-list dt {
  color: var(--lux-muted);
}

.lux-total-list dd {
  margin: 0;
}

.lux-line-item,
.lux-timeline span {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--lux-line);
  color: var(--lux-muted);
}

.lux-chat {
  padding: 0.85rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  margin-bottom: 0.75rem;
  background: color-mix(in srgb, var(--lux-text) 3%, var(--lux-surface));
}

.lux-chat--self {
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
}

.lux-chat span,
.lux-chat p {
  color: var(--lux-muted);
}

.lux-chat p {
  margin-bottom: 0;
}

.lux-prose {
  line-height: 1.75;
}

@media (max-width: 860px) {
  .lux-split,
  .lux-msg-layout {
    grid-template-columns: 1fr;
  }
}

.lux-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 92%, var(--lux-accent) 8%);
  flex-shrink: 0;
}

.lux-drawer__title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lux-drawer__close {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.lux-drawer__close .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.lux-drawer__close:hover,
.lux-drawer__close:focus-visible {
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  outline: none;
}

.lux-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0.85rem 0.75rem 1.35rem;
  -webkit-overflow-scrolling: touch;
}

.lux-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lux-drawer__section + .lux-drawer__section {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid color-mix(in srgb, var(--lux-line) 85%, transparent);
}

.lux-drawer__section-label {
  margin: 0 0 0.4rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-drawer__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.25;
  transition: background 0.15s ease, color 0.15s ease;
}

.lux-drawer__link .bi {
  width: 1.15rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--lux-muted);
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.lux-drawer__link:hover,
.lux-drawer__link:focus-visible {
  background: color-mix(in srgb, var(--lux-accent) 9%, var(--lux-surface));
  outline: none;
}

.lux-drawer__link:hover .bi,
.lux-drawer__link:focus-visible .bi {
  color: var(--lux-accent);
}

.lux-drawer__link--accent {
  background: color-mix(in srgb, var(--lux-accent) 11%, var(--lux-surface));
  border: 1px solid color-mix(in srgb, var(--lux-accent) 24%, var(--lux-line));
}

.lux-drawer__link--accent .bi {
  color: var(--lux-accent);
}

.lux-drawer__link--logout {
  color: #dc2626;
}

.lux-drawer__link--logout .bi {
  color: #dc2626;
}

.lux-drawer__link--logout:hover,
.lux-drawer__link--logout:focus-visible {
  background: color-mix(in srgb, #dc2626 10%, var(--lux-surface));
}

body.lux-drawer-open {
  overflow: hidden;
}

.lux-drawer__section--prefs {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid color-mix(in srgb, var(--lux-line) 85%, transparent);
}

.lux-drawer__section--prefs .lux-drawer__section-label {
  margin-top: 0.65rem;
}

.lux-drawer__section--prefs .lux-drawer__section-label:first-child {
  margin-top: 0;
}

.lux-drawer__prefs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 0.35rem 0.15rem;
}

.lux-drawer__pref-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.lux-drawer__pref-chip:hover,
.lux-drawer__pref-chip:focus-visible {
  background: color-mix(in srgb, var(--lux-accent) 9%, var(--lux-surface));
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  outline: none;
}

.lux-drawer__pref-chip.is-active {
  border-color: var(--lux-accent);
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
  color: var(--lux-accent);
}

.lux-drawer__pref-flag,
.lux-drawer__pref-symbol {
  font-size: 0.95rem;
  line-height: 1;
}

.lux-drawer__theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: calc(100% - 0.7rem);
  margin: 0 0.35rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lux-drawer__theme-toggle:hover,
.lux-drawer__theme-toggle:focus-visible {
  background: color-mix(in srgb, var(--lux-accent) 9%, var(--lux-surface));
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  outline: none;
}

.lux-drawer__theme-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
  color: var(--lux-accent);
  flex-shrink: 0;
}

.lux-drawer__theme-icon .bi {
  font-size: 1rem;
  line-height: 1;
}

.lux-drawer__theme-label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.lux-drawer__prefs-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  padding: 0 0.35rem;
}

.lux-drawer__prefs-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.lux-drawer__pref-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.lux-drawer__pref-icon--currency {
  font-size: 0.95rem;
  font-weight: 700;
}

.lux-drawer__pref-icon--theme {
  font: inherit;
  padding: 0;
}

.lux-drawer__pref-icon--theme .bi {
  font-size: 1rem;
  line-height: 1;
  color: var(--lux-accent);
}

.lux-drawer__pref-icon:hover,
.lux-drawer__pref-icon:focus-visible {
  background: color-mix(in srgb, var(--lux-accent) 9%, var(--lux-surface));
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  outline: none;
}

.lux-drawer__pref-icon.is-active {
  border-color: var(--lux-accent);
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--lux-accent) 22%, transparent);
}

/* —— Hero —— */
.lux-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.lux-hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 40%, #0f172a 100%);
  transform: scale(1.06);
  will-change: transform;
}

.lux-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.lux-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  color: #fff;
}

.lux-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  opacity: 0.85;
  margin: 0 0 0.5rem;
}

.lux-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.lux-hero__lead {
  max-width: 36rem;
  opacity: 0.92;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.lux-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s var(--lux-ease), box-shadow 0.2s;
}

.lux-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* —— Sections & typography —— */
.lux-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.lux-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.lux-h1,
.lux-h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.lux-h1 {
  font-size: clamp(1.65rem, 3vw, 2rem);
}

.lux-h1--auction {
  font-size: 1.35rem;
}

.lux-h2 {
  font-size: 1.25rem;
}

.lux-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lux-chip {
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.lux-chip.is-active {
  border-color: var(--lux-accent);
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
}

.lux-chip:hover {
  transform: translateY(-1px);
}

/* —— Carousel row —— */
.lux-carousel {
  position: relative;
}

.lux-card-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.lux-card-row .lux-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}

/* —— Tiles —— */
.lux-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

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

.lux-tiles--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .lux-tiles--cols-4,
  .lux-tiles--cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .lux-tiles--cols-4,
  .lux-tiles--cols-5 {
    grid-template-columns: 1fr;
  }
}

.lux-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--lux-shadow);
  transition: transform var(--lux-dur) var(--lux-ease), box-shadow var(--lux-dur);
}

.lux-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--lux-shadow-hover);
}

.lux-tile__arrow {
  opacity: 0.45;
  transition: transform 0.25s;
}

.lux-tile:hover .lux-tile__arrow {
  transform: translateX(4px);
}

/* —— Cards & grid —— */
.lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.lux-card {
  background: var(--lux-surface);
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-line);
  overflow: hidden;
  box-shadow: var(--lux-shadow);
  transition: transform var(--lux-dur) var(--lux-ease), box-shadow var(--lux-dur);
}

.lux-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lux-shadow-hover);
}

.lux-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--lux-muted) 12%, var(--lux-bg));
  overflow: hidden;
}

.lux-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--lux-ease);
}

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

.lux-card__ph {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(120deg, #e8e8ed, #f5f5f7 40%, #e8e8ed 80%);
  background-size: 200% 100%;
  animation: lux-shimmer 1.8s ease-in-out infinite;
}

@keyframes lux-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.lux-card__body {
  padding: 1rem 1.05rem 1.15rem;
}

.lux-card__title {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 0.35rem;
}

.lux-card__meta {
  font-size: 0.85rem;
  color: var(--lux-muted);
  margin-bottom: 0.5rem;
}

.lux-price {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lux-price--xl {
  font-size: 1.75rem;
}

/* —— Auction listing cards (storefront parity) —— */
.lux-auction-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  cursor: pointer;
}

.lux-auction-card__top,
.lux-auction-card__image,
.lux-auction-card__body {
  position: relative;
  z-index: 2;
}

.lux-auction-card__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.lux-card-action,
.lux-auction-card a:not(.lux-auction-card__cover),
.lux-auction-card button {
  position: relative;
  z-index: 3;
}

.lux-auction-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.55rem 0.35rem;
  min-height: 2.4rem;
}

.lux-auction-card__countdown {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2.5rem);
  padding: 0.22rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #1e3a8a 38%, transparent);
  color: #1e40af;
  background: color-mix(in srgb, #1e3a8a 10%, var(--lux-surface));
}

html[data-ui-mode="dark"] .lux-auction-card__countdown,
html[data-bs-theme="dark"] .lux-auction-card__countdown {
  border-color: color-mix(in srgb, #60a5fa 40%, transparent);
  color: #93c5fd;
  background: color-mix(in srgb, #1e3a8a 28%, transparent);
}

.lux-auction-card__countdown--static {
  border-color: color-mix(in srgb, var(--lux-muted) 35%, transparent);
  color: var(--lux-muted);
  background: color-mix(in srgb, var(--lux-muted) 10%, transparent);
}

.lux-auction-card__watch {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--lux-surface) 88%, transparent);
  color: var(--lux-accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
}

.lux-auction-card__watch:hover,
.lux-auction-card__watch.is-active,
.lux-auction-card__watch[aria-pressed="true"] {
  color: #fff;
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.lux-auction-card__image {
  width: calc(100% - 1rem);
  height: 168px;
  margin: 0 0.5rem;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-muted) 12%, var(--lux-bg));
  pointer-events: none;
}

.lux-auction-card__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.lux-card--xxl .lux-auction-card__image {
  height: 220px;
}

.lux-auction-card__body {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 0.85rem 1rem 1.1rem;
}

.lux-auction-card__price {
  font-weight: 800;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lux-auction-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lux-auction-card__title a {
  color: inherit;
  text-decoration: none;
}

.lux-auction-card__title a:hover {
  color: var(--lux-accent);
}

.lux-auction-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.lux-auction-card__type,
.lux-auction-card__cond {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.lux-auction-card__type--auction {
  background: #1e3a8a;
  color: #fff;
}

.lux-auction-card__type--buynow {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lux-auction-card__type--combo {
  background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
  color: #fff;
  font-size: 0.68rem;
}

.lux-auction-card__type--reverse {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.28);
  text-transform: none;
}

.lux-auction-card__price--reverse {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #6d28d9;
}

.lux-auction-card__price-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: color-mix(in srgb, #6d28d9 72%, var(--lux-muted));
}

.lux-auction-card__price-value {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1;
}

.lux-auction-card__price-value .bi {
  font-size: 1.35em;
  line-height: 1;
  margin-top: 0.05em;
}

.lux-auction-card--reverse .lux-btn--primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.lux-auction-card--reverse .lux-btn--primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.lux-auction-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--lux-muted);
}

.lux-auction-card__chip--protection {
  flex: 0 0 100%;
  font-weight: 600;
  color: #34d399;
}

.lux-auction-card__chip--location {
  flex: 0 0 100%;
}

.lux-auction-card__shop {
  margin: 0;
  font-size: 0.82rem;
  color: var(--lux-muted);
}

.ab-seller-shop-link,
.lux-auction-card__shop-link,
.lux-vendor__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  line-height: 1.3;
  max-width: 100%;
}

.ab-seller-shop-link:hover,
.lux-auction-card__shop-link:hover,
.lux-vendor__shop-link:hover {
  color: var(--lux-accent, #1e3a8a);
  text-decoration: none;
}

.ab-seller-shop-link span,
.lux-auction-card__shop-link span,
.lux-vendor__shop-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-seller-shop-link .bi,
.lux-auction-card__shop-link .bi,
.lux-vendor__shop-link .bi {
  flex-shrink: 0;
  font-size: 0.95em;
  opacity: 0.9;
}

.lux-auction-card__bid {
  font-size: 0.82rem;
  color: var(--lux-muted);
}

.lux-auction-card__cta.lux-btn--primary {
  margin-top: 0.15rem;
  background: #1e3a8a;
}

.lux-auction-card__cta.lux-btn--primary:hover {
  background: #172554;
}

.lux-grid:not(.lux-grid--list) .lux-auction-card__cta {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.lux-card--highlight.lux-auction-card {
  border-color: color-mix(in srgb, #f5b301 55%, var(--lux-line));
  box-shadow: 0 0 0 1px color-mix(in srgb, #f5b301 35%, transparent), var(--lux-shadow);
}

.lux-home .lux-auction-card {
  border-radius: 18px;
}

.lux-home .lux-auction-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.lux-home .lux-auction-card__cta {
  margin-top: auto;
  width: 100%;
}

/* —— Search / catalog page —— */
body.lux-body:not([data-lux-page="account"]):not([data-lux-page="auth"]) .lux-pagehead {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
}

.lux-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.lux-input,
.lux-select {
  font: inherit;
  border-radius: var(--lux-radius-sm);
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  padding: 0.5rem 0.75rem;
}

.lux-input--grow {
  flex: 1 1 200px;
}

.lux-input--block,
.lux-select--block {
  width: 100%;
}

.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font: inherit;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s, opacity 0.2s;
}

.lux-btn--primary {
  background: var(--lux-accent);
  color: #fff;
}

.lux-btn--primary:hover {
  background: var(--lux-accent-hover);
}

.lux-btn--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid var(--lux-line);
}

.lux-btn--block {
  width: 100%;
}

.lux-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lux-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  padding: 1.5rem 1rem 3rem;
}

.lux-pager__link {
  min-width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.lux-pager__link:hover {
  border-color: var(--lux-line);
  background: var(--lux-surface);
}

.lux-pager__link.is-active {
  background: var(--lux-text);
  color: var(--lux-surface);
}

/* —— Category layout —— */
.lux-cat {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem clamp(0.75rem, 2vw, 1.5rem) 3rem;
  min-width: 0;
  box-sizing: border-box;
}

.lux-cat__side,
.lux-cat__main {
  min-width: 0;
  max-width: 100%;
}

.lux-cat__main {
  width: 100%;
}

.lux-cat .lux-grid {
  padding-inline: 0;
  max-width: none;
  width: 100%;
  margin-inline: 0;
}

.lux-cat .lux-grid:not(.lux-grid--list) {
  grid-template-columns: repeat(auto-fill, minmax(220px, 300px));
  justify-content: start;
}

body.lux-body[data-lux-page="category"] .pf-banner-rail--left {
  justify-self: end;
}

body.lux-body[data-lux-page="category"] .pf-banner-rail--right {
  justify-self: start;
}

@media (min-width: 880px) {
  .lux-cat {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
  }

  .lux-cat__side {
    position: sticky;
    top: calc(var(--lux-header-h) + 12px);
  }
}

.lux-filters {
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1rem;
  box-shadow: var(--lux-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
}

.lux-filters .lux-input,
.lux-filters .lux-select {
  max-width: 100%;
}

.lux-filters__head {
  font-weight: 600;
  font-size: 0.9rem;
}

.lux-field span {
  display: block;
  font-size: 0.8rem;
  color: var(--lux-muted);
  margin-bottom: 0.25rem;
}

.lux-cat__head {
  margin-bottom: 0.75rem;
}

.lux-cat__meta {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--lux-muted);
}

.lux-cat__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
}

.lux-cat__toolbar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.65rem 0.85rem;
  min-width: 0;
}

.lux-cat__toolbar-field {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.lux-cat__toolbar-label {
  font-size: 0.72rem;
  color: var(--lux-muted);
  font-weight: 600;
}

.lux-cat__view-toggle {
  display: inline-flex;
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lux-cat__view-btn {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--lux-muted);
  cursor: pointer;
}

.lux-cat__view-btn.is-active {
  background: color-mix(in srgb, var(--lux-accent) 14%, var(--lux-surface));
  color: var(--lux-accent);
}

.lux-filters__section {
  display: grid;
  gap: 0.45rem;
}

.lux-filters__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-filters__price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.lux-filters__radios {
  display: grid;
  gap: 0.35rem;
}

.lux-filters__radio {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  cursor: pointer;
}

.lux-filters__radio input {
  accent-color: var(--lux-accent);
}

.lux-filters__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.lux-filters__links a {
  font-size: 0.86rem;
  text-decoration: none;
  color: var(--lux-accent);
}

.lux-filters__links a:hover {
  text-decoration: underline;
}

.lux-grid--list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lux-grid--list .lux-auction-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(148px, 200px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0.4rem 1rem;
  padding: 0.75rem;
  width: 100%;
  min-height: 168px;
  border-radius: calc(var(--lux-radius) + 2px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lux-grid--list .lux-auction-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  border-color: color-mix(in srgb, var(--lux-accent) 22%, var(--lux-line));
}

.lux-grid--list .lux-auction-card__top,
.lux-grid--list .lux-auction-card__image,
.lux-grid--list .lux-auction-card__body {
  position: static;
}

.lux-grid--list .lux-auction-card__top {
  grid-column: 1 / -1;
  grid-row: 1;
  padding: 0;
  min-height: 0;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
}

.lux-grid--list .lux-auction-card__countdown {
  max-width: calc(100% - 2.75rem);
  margin: 0;
}

.lux-grid--list .lux-auction-card__watch {
  margin-left: auto;
  flex-shrink: 0;
}

.lux-grid--list .lux-auction-card__image {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: 124px;
  margin: 0;
  align-self: start;
  border-radius: 12px;
  object-fit: cover;
}

.lux-grid--list .lux-auction-card__body {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  align-self: stretch;
  min-height: 124px;
  padding: 0;
}

.lux-grid--list .lux-auction-card__price {
  font-size: 1.15rem;
}

.lux-grid--list .lux-auction-card__title {
  font-size: 0.95rem;
  -webkit-line-clamp: 2;
}

.lux-grid--list .lux-auction-card__shop {
  margin: 0;
  font-size: 0.82rem;
}

.lux-grid--list .lux-auction-card__meta {
  flex-wrap: wrap;
}

.lux-grid--list .lux-auction-card__cta {
  align-self: flex-end;
  width: auto;
  min-width: 10.5rem;
  max-width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .lux-grid--list .lux-auction-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .lux-grid--list .lux-auction-card__body {
    min-height: 0;
  }

  .lux-grid--list .lux-auction-card__cta {
    align-self: stretch;
    width: 100%;
    min-width: 0;
    margin-top: 0.35rem;
  }
}

.lux-loadmore {
  text-align: center;
  padding: 1rem 0 2rem;
}

.lux-loadmore[hidden] {
  display: none;
}

/* —— Auction PDP —— */
.lux-flash {
  max-width: 720px;
  margin: 1rem auto;
  padding: 0.75rem 1rem;
  border-radius: var(--lux-radius-sm);
  text-align: center;
}

.lux-flash--err {
  background: color-mix(in srgb, var(--lux-danger) 12%, var(--lux-surface));
  color: var(--lux-danger);
}

.lux-flash--ok {
  background: color-mix(in srgb, var(--lux-ok) 12%, var(--lux-surface));
  color: var(--lux-ok);
}

.lux-auction {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.lux-auction__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .lux-auction__grid {
    grid-template-columns: 1fr min(360px, 34vw);
    align-items: start;
  }

  .lux-auction__sticky {
    position: sticky;
    top: calc(var(--lux-header-h) + 12px);
  }
}

.lux-gallery__main {
  border-radius: var(--lux-radius);
  overflow: hidden;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
}

.lux-gallery__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  background: #000;
}

.lux-gallery__zoom.is-zoomed img {
  cursor: zoom-out;
}

.lux-gallery__zoom img {
  width: 100%;
  display: block;
  vertical-align: middle;
  transition: transform 0.45s var(--lux-ease);
}

.lux-gallery__zoom.is-zoomed img {
  transform: scale(1.35);
}

.lux-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}

.lux-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.72;
  transition: opacity 0.2s, border-color 0.2s;
}

.lux-gallery__thumb.is-active,
.lux-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--lux-accent);
}

.lux-gallery__thumb img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  display: block;
}

.lux-gallery__ph {
  min-height: 280px;
  background: #e8e8ed;
}

.lux-bidbox {
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  padding: 1.25rem;
  box-shadow: var(--lux-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lux-bidbox__label {
  font-size: 0.8rem;
  color: var(--lux-muted);
  display: block;
}

.lux-countdown {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--lux-radius-sm);
  background: color-mix(in srgb, var(--lux-text) 4%, var(--lux-surface));
}

.lux-countdown__val {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lux-bidbox__vendorlink {
  font-size: 0.9rem;
  color: var(--lux-accent);
  text-decoration: none;
}

.lux-tabs {
  margin-top: 2rem;
  max-width: 800px;
}

.lux-tabs__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-bottom: 1px solid var(--lux-line);
  margin-bottom: 1rem;
}

.lux-tabs__tab {
  border: none;
  background: transparent;
  font: inherit;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  color: var(--lux-muted);
  border-radius: var(--lux-radius-sm) var(--lux-radius-sm) 0 0;
  transition: color 0.2s, background 0.2s;
}

.lux-tabs__tab.is-active {
  color: var(--lux-text);
  font-weight: 600;
  background: color-mix(in srgb, var(--lux-text) 5%, transparent);
}

.lux-tabs__panel {
  padding: 0.25rem 0 1.5rem;
}

.lux-prose {
  line-height: 1.6;
}

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

.lux-bids {
  margin-top: 2rem;
}

.lux-bidlist {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  overflow: hidden;
  background: var(--lux-surface);
}

.lux-bidlist__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--lux-line);
}

.lux-bidlist__row:last-child {
  border-bottom: none;
}

.lux-bidlist__amt {
  font-weight: 600;
}

.lux-bidlist__meta {
  font-size: 0.82rem;
  color: var(--lux-muted);
}

/* —— Vendor shop —— */
.lux-vendor__hero {
  position: relative;
}

.lux-vendor--premium {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.lux-vendor__hero--premium {
  margin-bottom: 0.5rem;
}

.lux-vendor__banner {
  height: min(38vw, 220px);
  overflow: hidden;
  border-radius: 0 0 var(--lux-radius) var(--lux-radius);
  background: linear-gradient(120deg, #1e293b, #334155);
}

.lux-vendor__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.72) 100%);
  pointer-events: none;
}

.lux-vendor__hero--premium .lux-vendor__banner {
  height: min(42vw, 280px);
  position: relative;
}

.lux-vendor__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transform: scale(1.03);
}

.lux-vendor__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: -3rem auto 0;
  padding: 0 1rem 1rem;
  position: relative;
  z-index: 2;
}

.lux-vendor__head--premium {
  align-items: flex-end;
  margin-top: -4.5rem;
  padding-bottom: 1.25rem;
}

.lux-vendor__head-card {
  display: flex;
  align-items: flex-end;
  gap: 1.15rem;
  max-width: 1200px;
  margin: -3.75rem auto 0;
  padding: 1.2rem 1.45rem;
  position: relative;
  z-index: 3;
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
}

.lux-vendor__identity {
  min-width: 0;
}

.lux-vendor__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: #14532d;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lux-vendor__head-card .lux-vendor__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lux-text);
  line-height: 1.15;
}

.lux-vendor__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lux-text);
  line-height: 1.15;
}

.lux-vendor__head-card .lux-vendor__shop-line {
  margin: 0.2rem 0 0;
  color: var(--lux-muted);
  font-size: 0.95rem;
}

.lux-vendor__shop-line {
  margin: 0.2rem 0 0;
  color: var(--lux-muted);
  font-size: 0.95rem;
}

.lux-vendor__head-card .lux-vendor__rating {
  margin: 0.45rem 0 0;
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.lux-vendor__rating {
  margin: 0.45rem 0 0;
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.lux-vendor__rating-sep {
  opacity: 0.65;
}

.lux-vendor__logo {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--lux-surface);
  border: 3px solid var(--lux-surface);
  box-shadow: var(--lux-shadow);
  display: grid;
  place-items: center;
}

.lux-vendor__logo-ph {
  font-size: 2rem;
  font-weight: 600;
  color: var(--lux-muted);
}

.lux-vendor__kpis {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lux-vendor__kpis--premium {
  padding-top: 0.25rem;
}

.lux-kpi--vendor {
  flex: 1 1 160px;
}

.lux-vendor__catalog {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.lux-vendor__catalog-title {
  margin-bottom: 1rem;
}

.lux-grid--shop {
  gap: 1rem;
}

.lux-vendor__intro--premium {
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  padding: 1rem 1.15rem;
  box-shadow: var(--lux-shadow);
  color: var(--lux-muted);
  line-height: 1.65;
}

.lux-vendor--premium .lux-vendor__catalog-title {
  color: var(--lux-text);
}

@media (max-width: 575px) {
  .lux-vendor__head-card {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -2.5rem;
    padding: 1rem;
  }
}

.lux-kpi {
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  padding: 0.85rem 1.1rem;
  min-width: 140px;
  box-shadow: var(--lux-shadow);
}

.lux-kpi__val {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
}

.lux-kpi__lbl {
  font-size: 0.8rem;
  color: var(--lux-muted);
}

.lux-vendor__intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.lux-vendor .lux-h2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.lux-reviewlist {
  list-style: none;
  margin: 1rem auto 3rem;
  padding: 0 1rem;
  max-width: 720px;
}

.lux-reviewlist__item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--lux-line);
}

.lux-reviewlist__stars {
  color: #f5a524;
  margin-bottom: 0.35rem;
}

/* —— Footer —— */
.lux-footer {
  flex: 0 0 auto;
  margin-top: auto;
  border-top: 1px solid var(--lux-line);
  padding: 2.5rem 1rem;
  background: var(--lux-surface);
}

.lux-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.lux-footer__brand {
  font-weight: 600;
}

.lux-footer__muted {
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.lux-footer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lux-muted);
  margin-bottom: 0.35rem;
}

.lux-footer__langs {
  display: flex;
  gap: 0.75rem;
}

.lux-footer a {
  color: inherit;
}

.lux-footer__bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--lux-line);
  font-size: 0.85rem;
  color: var(--lux-muted);
}

/* —— Toasts —— */
.lux-toast-host {
  position: fixed;
  z-index: 10900;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  pointer-events: none;
  max-width: min(22rem, calc(100vw - 1.5rem));
}

.lux-toast-host--top-right { top: calc(var(--lux-header-h, 64px) + 0.75rem); right: 1rem; align-items: flex-end; }
.lux-toast-host--top-left { top: calc(var(--lux-header-h, 64px) + 0.75rem); left: 1rem; align-items: flex-start; }
.lux-toast-host--bottom-right { bottom: 1.25rem; right: 1.25rem; align-items: flex-end; }
.lux-toast-host--bottom-left { bottom: 1.25rem; left: 1.25rem; align-items: flex-start; }

.lux-toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
  min-width: 220px;
  max-width: min(92vw, 360px);
  padding: 0.8rem 0.9rem;
  border-radius: var(--lux-radius-sm);
  background: color-mix(in srgb, var(--lux-surface) 94%, transparent);
  backdrop-filter: var(--lux-blur);
  -webkit-backdrop-filter: var(--lux-blur);
  border: 1px solid var(--lux-line);
  box-shadow: var(--lux-shadow-hover);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.32s var(--lux-ease), transform 0.32s var(--lux-ease);
  cursor: default;
}

.lux-toast.is-in {
  opacity: 1;
  transform: translateY(0);
}

.lux-toast__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  background: color-mix(in srgb, var(--lux-ink) 6%, transparent);
}

.lux-toast__title {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}

.lux-toast__body,
.lux-toast__txt {
  margin: 0;
  font-size: 0.8rem;
  color: var(--lux-muted);
  line-height: 1.35;
}

.lux-toast__close {
  border: 0;
  background: transparent;
  color: var(--lux-muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.lux-toast--err { border-color: color-mix(in srgb, var(--lux-danger) 35%, var(--lux-line)); }
.lux-toast--err .lux-toast__icon { color: var(--lux-danger); }
.lux-toast--ok { border-color: color-mix(in srgb, var(--lux-ok) 35%, var(--lux-line)); }
.lux-toast--ok .lux-toast__icon { color: var(--lux-ok); }
.lux-toast--info .lux-toast__icon { color: var(--lux-accent); }
.lux-toast--warn { border-color: color-mix(in srgb, #d4a012 35%, var(--lux-line)); }
.lux-toast--auction {
  border-color: color-mix(in srgb, #c9a227 45%, var(--lux-line));
  background: linear-gradient(135deg, color-mix(in srgb, #1a1710 88%, transparent), color-mix(in srgb, var(--lux-surface) 94%, transparent));
}
.lux-toast--auction .lux-toast__icon { color: #d4af37; }

.lux-flash--consumed { display: none !important; }

/* —— Notification hub (header) —— */
.lux-notifications-menu { position: relative; }

.lux-notifications-trigger .bi {
  font-size: 1.28rem;
  line-height: 1;
}

.lux-notifications-trigger .bi-bell {
  color: #ea580c;
  filter: drop-shadow(0 1px 0 rgba(234, 88, 12, 0.15));
}

.lux-notifications-trigger:hover .bi-bell,
.lux-notifications-trigger:focus-visible .bi-bell {
  color: #c2410c;
}

.lux-header--storefront .lux-notifications-trigger .bi {
  font-size: 1.32rem;
}

.lux-notifications-trigger .lux-badge.lux-badge--dot {
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  font-size: 0.62rem;
  background: linear-gradient(135deg, #ef4444, #ea580c);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}
.lux-notifications-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(20rem, 92vw);
  border-radius: var(--lux-radius-sm);
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 96%, transparent);
  backdrop-filter: var(--lux-blur);
  -webkit-backdrop-filter: var(--lux-blur);
  box-shadow: var(--lux-shadow-hover);
  z-index: 120;
  overflow: hidden;
}
.lux-notifications-panel__head,
.lux-notifications-panel__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--lux-line);
  font-size: 0.82rem;
}
.lux-notifications-panel__foot { border-bottom: 0; border-top: 1px solid var(--lux-line); }
.lux-notifications-panel__mark {
  border: 0;
  background: transparent;
  color: var(--lux-accent);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}
.lux-notifications-panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--lux-line);
}
.lux-notifications-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid transparent;
  line-height: 1.1;
}

.lux-notifications-chip [data-lux-notification-type] {
  display: inline-grid;
  place-items: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.lux-notifications-chip--messages {
  color: #1d4ed8;
  background: color-mix(in srgb, #2563eb 12%, var(--lux-surface));
  border-color: color-mix(in srgb, #2563eb 28%, var(--lux-line));
}

.lux-notifications-chip--messages [data-lux-notification-type] {
  background: #2563eb;
  color: #fff;
}

.lux-notifications-chip--tickets {
  color: #6d28d9;
  background: color-mix(in srgb, #7c3aed 12%, var(--lux-surface));
  border-color: color-mix(in srgb, #7c3aed 28%, var(--lux-line));
}

.lux-notifications-chip--tickets [data-lux-notification-type] {
  background: #7c3aed;
  color: #fff;
}

.lux-notifications-chip--invoices {
  color: #b45309;
  background: color-mix(in srgb, #f59e0b 14%, var(--lux-surface));
  border-color: color-mix(in srgb, #f59e0b 30%, var(--lux-line));
}

.lux-notifications-chip--invoices [data-lux-notification-type] {
  background: #d97706;
  color: #fff;
}

.lux-notifications-chip--transactions {
  color: #047857;
  background: color-mix(in srgb, #10b981 12%, var(--lux-surface));
  border-color: color-mix(in srgb, #10b981 28%, var(--lux-line));
}

.lux-notifications-chip--transactions [data-lux-notification-type] {
  background: #059669;
  color: #fff;
}

.lux-notifications-chip--auctions,
.lux-notifications-chip--gold {
  color: #c2410c;
  background: color-mix(in srgb, #ea580c 14%, var(--lux-surface));
  border-color: color-mix(in srgb, #ea580c 30%, var(--lux-line));
}

.lux-notifications-chip--auctions [data-lux-notification-type],
.lux-notifications-chip--gold [data-lux-notification-type] {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff;
}

.lux-notifications-chip--primary { color: var(--lux-accent); }
.lux-notifications-panel__list {
  max-height: 16rem;
  overflow: auto;
  padding: 0.25rem 0;
}
.lux-notifications-item {
  display: block;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid color-mix(in srgb, var(--lux-line) 65%, transparent);
}
.lux-notifications-item strong { display: block; font-size: 0.82rem; }
.lux-notifications-item span { display: block; font-size: 0.74rem; color: var(--lux-muted); }
.lux-notifications-item.is-unread strong { color: var(--lux-ink); }
.lux-notifications-empty {
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.8rem;
  color: var(--lux-muted);
}

/* —— Premium notifications widget (dashboard) —— */
.lux-notifications-premium {
  position: relative;
  margin: 0 0 1.35rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
  overflow: hidden;
}

.lux-notifications-premium__glow {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 68%);
  pointer-events: none;
}

.lux-notifications-premium__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--lux-line);
}

.lux-notifications-premium__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.lux-notifications-premium__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--lux-accent);
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
  border: 1px solid color-mix(in srgb, var(--lux-accent) 28%, var(--lux-line));
  box-shadow: none;
}

.lux-notifications-premium__eyebrow {
  margin: 0 0 0.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-muted);
  font-weight: 600;
}

.lux-notifications-premium__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lux-text);
}

.lux-notifications-premium__total-badge {
  margin-left: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dbeafe;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(29, 78, 216, 0.35));
  border: 1px solid rgba(147, 197, 253, 0.35);
}

.lux-notifications-premium__cta {
  flex-shrink: 0;
  gap: 0.15rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.lux-notifications-premium__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.25rem, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.lux-notifications-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-text) 2%, var(--lux-surface));
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lux-notifications-stat:hover {
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 6%, var(--lux-surface));
  transform: translateY(-1px);
}

.lux-notifications-stat.is-active {
  border-color: color-mix(in srgb, var(--lux-accent) 45%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--lux-accent) 18%, transparent);
}

.lux-notifications-stat__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lux-notifications-stat--blue .lux-notifications-stat__icon { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.lux-notifications-stat--violet .lux-notifications-stat__icon { color: #7c3aed; background: rgba(109, 40, 217, 0.1); }
.lux-notifications-stat--amber .lux-notifications-stat__icon { color: #d97706; background: rgba(217, 119, 6, 0.12); }
.lux-notifications-stat--emerald .lux-notifications-stat__icon { color: #059669; background: rgba(5, 150, 105, 0.1); }
.lux-notifications-stat--gold .lux-notifications-stat__icon { color: #b45309; background: rgba(180, 134, 11, 0.12); }

.lux-notifications-stat__copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.lux-notifications-stat__value {
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--lux-text);
}

.lux-notifications-stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--lux-muted);
  line-height: 1.2;
}

.lux-notifications-stat:not(.is-active) .lux-notifications-stat__value {
  color: var(--lux-text);
}

.lux-notifications-premium__feed {
  position: relative;
  z-index: 1;
}

.lux-notifications-premium__empty {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.35rem 1rem;
  border-radius: 14px;
  border: 1px dashed var(--lux-line);
  background: color-mix(in srgb, var(--lux-text) 2%, var(--lux-surface));
}

.lux-notifications-premium__empty-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 0.25rem;
}

.lux-notifications-premium__empty strong {
  font-size: 0.92rem;
  color: var(--lux-text);
}

.lux-notifications-premium__empty p {
  margin: 0;
  max-width: 26rem;
  font-size: 0.8rem;
  color: var(--lux-muted);
  line-height: 1.45;
}

.lux-notifications-premium__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.lux-notifications-premium__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-text) 2%, var(--lux-surface));
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lux-notifications-premium__item:hover {
  border-color: color-mix(in srgb, var(--lux-accent) 30%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 6%, var(--lux-surface));
  transform: translateY(-1px);
}

.lux-notifications-premium__item.is-unread {
  border-color: color-mix(in srgb, var(--lux-accent) 40%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  box-shadow: inset 3px 0 0 var(--lux-accent);
}

.lux-notifications-premium__item-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lux-notifications-premium__item-icon--message { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.lux-notifications-premium__item-icon--ticket { color: #7c3aed; background: rgba(109, 40, 217, 0.1); }
.lux-notifications-premium__item-icon--invoice { color: #d97706; background: rgba(217, 119, 6, 0.12); }
.lux-notifications-premium__item-icon--transaction { color: #059669; background: rgba(5, 150, 105, 0.1); }
.lux-notifications-premium__item-icon--auction_event { color: #b45309; background: rgba(180, 134, 11, 0.12); }

.lux-notifications-premium__item-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.lux-notifications-premium__item-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lux-notifications-premium__item-top strong {
  font-size: 0.86rem;
  color: var(--lux-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-notifications-premium__item.is-unread .lux-notifications-premium__item-top strong {
  color: var(--lux-text);
}

.lux-notifications-premium__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}

.lux-notifications-premium__item-text {
  font-size: 0.78rem;
  color: var(--lux-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-notifications-premium__item-time {
  font-size: 0.68rem;
  color: var(--lux-muted);
}

.lux-notifications-premium__item-chevron {
  color: var(--lux-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .lux-notifications-premium__head {
    flex-direction: column;
    align-items: stretch;
  }

  .lux-notifications-premium__cta {
    justify-content: center;
  }

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

/* —— Skeleton —— */
.lux-skeleton {
  border-radius: var(--lux-radius);
  background: linear-gradient(120deg, #ececf0, #f5f5f7 45%, #ececf0 90%);
  background-size: 200% 100%;
  animation: lux-shimmer 1.6s ease-in-out infinite;
}

.lux-skeleton--row {
  height: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

/* —— Scroll reveal —— */
.lux-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--lux-ease), transform 0.55s var(--lux-ease);
}

.lux-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Listing upsells + FSK —— */
.lux-card--highlight {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--lux-accent) 45%, transparent), var(--lux-shadow);
}
.lux-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lux-accent) 88%, #fff);
  color: #fff;
  line-height: 1;
}
.lux-card__media {
  position: relative;
}
.lux-card--xxl .lux-card__media img,
.lux-card--xxl .lux-card__ph {
  min-height: 220px;
  object-fit: cover;
}
.lux-auction__gallery-wrap--xxl .lux-gallery__main img,
.lux-auction__gallery-wrap--xxl .lux-gallery__main .lux-gallery__ph {
  min-height: 320px;
}
.lux-badge--accent {
  background: color-mix(in srgb, #c9a227 22%, #1e293b);
  color: #fde68a;
  border: 1px solid color-mix(in srgb, #c9a227 40%, transparent);
}

.lux-badge--highlight {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--lux-accent) 15%, var(--lux-surface));
  color: var(--lux-accent);
}
.lux-fsk-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
}
.lux-fsk-gate--inline {
  position: static;
  inset: auto;
  background: transparent;
  place-items: stretch;
  padding: 0 0 1rem;
}
.lux-fsk-gate__box {
  max-width: 420px;
  padding: 1.25rem 1.5rem;
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  box-shadow: var(--lux-shadow);
}
.lux-fsk-gate__form {
  margin-top: 0.75rem;
}

.lux-attrlist {
  margin: 0;
  padding: 0;
  max-width: 720px;
}
.lux-attrlist__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 2fr;
  gap: 0.75rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--lux-line);
}
.lux-attrlist__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--lux-muted);
}
.lux-attrlist__row dd {
  margin: 0;
}
.lux-faq__item {
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--lux-surface);
}
.lux-faq__item summary {
  cursor: pointer;
  font-weight: 600;
}
.lux-newslist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}
.lux-newslist__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lux-line);
}
.lux-newslist__item a {
  font-weight: 600;
}

/* —— CMS hero (homepage) —— */
.lux-hero--cms {
  min-height: clamp(260px, 34vh, 380px);
}

.lux-home-hero-stage .lux-hero--cms {
  min-height: clamp(220px, 26vh, 300px);
  align-items: center;
}

.lux-hero--cms .lux-hero__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.lux-hero--cms .lux-hero__content {
  padding: 2.25rem 1.5rem 2.25rem;
  max-width: 1280px;
  margin-inline: auto;
}

.lux-hero--cms .lux-hero__title :is(h1, h2, h3, p) {
  margin: 0 0 0.5rem;
  font: inherit;
  color: inherit;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  text-align: left;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.lux-hero--cms .lux-hero__lead {
  max-width: min(56rem, 100%);
}

.lux-hero--cms .lux-hero__lead :is(p, span) {
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.lux-hero--cms .lux-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  width: 100%;
}

.lux-hero--cms .lux-hero__main {
  min-width: 0;
  width: 100%;
  justify-self: start;
  text-align: left;
  position: relative;
  z-index: 1;
}

.lux-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0;
}

.lux-hero__kpis {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 520px;
}

.lux-hero--cms .lux-hero__kpis--corner {
  margin: 0;
  width: auto;
  max-width: none;
  grid-template-columns: repeat(2, minmax(148px, 1fr));
  align-self: start;
  justify-self: end;
}

.lux-hero--cms .lux-hero__kpis .lux-kpi {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lux-hero--cms .lux-kpi__val {
  display: block;
  color: #f8fafc !important;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 12px rgba(96, 165, 250, 0.22);
}

.lux-hero--cms .lux-kpi__lbl {
  display: block;
  color: rgba(226, 232, 240, 0.78) !important;
  opacity: 1;
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lux-hero--cms .lux-cta {
  background: var(--lux-cta-bg, #ffffff) !important;
  color: var(--lux-cta-fg, #111111) !important;
  border: 1px solid var(--lux-cta-border, transparent) !important;
  font-weight: 600;
  min-height: 44px;
  padding-inline: 1.45rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.lux-hero--cms .lux-cta:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.lux-cta--soft {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lux-cta--compact {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
}

.lux-cta--discover {
  font-weight: 700;
}

.lux-cta .hero-cta__icon {
  font-size: 0.92em;
  line-height: 1;
}

.lux-cta .hero-cta__icon .sf-icon__fa {
  display: block;
}

.no-fa-kit .lux-cta .hero-cta__icon .sf-icon__bi {
  display: block;
}

.lux-hero__visuals {
  position: relative;
  width: 200px;
  max-width: 200px;
  min-height: 0;
  align-self: start;
  justify-self: end;
  overflow: visible;
  isolation: isolate;
  flex-shrink: 0;
}

.lux-hero-preview-rotator {
  position: relative;
  width: 200px;
  min-height: 0;
  margin-left: auto;
  overflow: hidden;
  border-radius: 18px;
  contain: paint;
  --lux-hero-card-h: 228px;
}

.lux-hero-preview-rotator.is-rotating {
  height: var(--lux-hero-card-h);
}

.lux-hero-preview {
  display: grid;
  gap: 0.45rem;
  text-decoration: none;
  color: #f8fafc;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: opacity var(--lux-hero-fade-ms, 1.4s) ease, visibility var(--lux-hero-fade-ms, 1.4s) ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lux-hero-preview-rotator:not(.is-rotating) .lux-hero-preview {
  position: relative;
  width: 100%;
}

.lux-hero-preview-rotator.is-rotating .lux-hero-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  box-shadow: none;
}

.lux-hero-preview-rotator.is-rotating .lux-hero-preview.is-active {
  position: relative;
  height: 100%;
  max-height: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.lux-hero-preview.is-active:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
}

.lux-hero-preview-rotator .lux-hero-preview--featured,
.lux-hero-preview-rotator .lux-hero-preview--live {
  width: 100%;
  max-width: 200px;
  height: var(--lux-hero-card-h);
  max-height: var(--lux-hero-card-h);
  padding: 0.55rem 0.55rem 0.6rem;
  box-sizing: border-box;
  overflow: hidden;
}

.lux-hero-preview-rotator .lux-hero-preview--featured .lux-hero-preview__media,
.lux-hero-preview-rotator .lux-hero-preview--live .lux-hero-preview__media,
.lux-hero-preview-rotator .lux-hero-preview--live .lux-hero-preview__media--wide {
  aspect-ratio: 4 / 3;
  flex: none;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.lux-hero-preview-rotator .lux-hero-preview--featured .lux-hero-preview__media img,
.lux-hero-preview-rotator .lux-hero-preview--featured .lux-hero-preview__media .media-no-image,
.lux-hero-preview-rotator .lux-hero-preview--live .lux-hero-preview__media img,
.lux-hero-preview-rotator .lux-hero-preview--live .lux-hero-preview__media .media-no-image {
  min-height: 0;
}

.lux-hero-preview-rotator .lux-hero-preview--live {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.35rem;
  align-content: stretch;
}

.lux-hero-preview-rotator .lux-hero-preview--live .lux-hero-preview__badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
}

.lux-hero-preview-rotator .lux-hero-preview--live .lux-hero-preview__live-panel {
  min-width: 0;
  min-height: 0;
  width: 100%;
  padding: 0;
  gap: 0.12rem;
  align-content: start;
  overflow: hidden;
}

.lux-hero-preview__badge {
  display: inline-flex;
  align-self: start;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-hero-preview__badge--live {
  background: #ef4444;
  color: #fff;
}

.lux-hero-preview__media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 5;
}

.lux-hero-preview__media--wide {
  aspect-ratio: 16 / 10;
  min-height: 92px;
}

.lux-hero-preview__media img,
.lux-hero-preview__media .media-no-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
  border-radius: 10px;
}

.lux-hero-preview__body {
  display: grid;
  gap: 0.15rem;
}

.lux-hero-preview__title {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lux-hero-preview__price {
  font-size: 0.82rem;
  font-weight: 800;
  color: #86efac;
}

.lux-hero-preview__actions {
  position: absolute;
  top: 2.55rem;
  right: 0.4rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(248, 250, 252, 0.92);
}

.lux-hero-preview__live-panel {
  display: grid;
  gap: 0.25rem;
  align-content: center;
  min-width: 118px;
  padding: 0.2rem 0.35rem;
}

.lux-hero-preview__live-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.88);
}

.lux-hero-preview__bid-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.lux-hero-preview__bid-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  font-size: 0.68rem;
}

.lux-hero-preview__bid-list strong {
  color: #86efac;
  font-weight: 700;
}

.lux-hero-preview__live-lead {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lux-hero-preview__live-price {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: #86efac;
}

.lux-hero-preview__live-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 0.2rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #84c42a;
  color: #0f172a;
  font-size: 0.66rem;
  font-weight: 800;
}

.lux-hero-preview-rotator .lux-hero-preview__bid-list li:nth-child(n + 3) {
  display: none;
}

.lux-hero-preview-rotator .lux-hero-preview__live-cta {
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.22rem 0.45rem;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

.lux-hero-preview-rotator .lux-hero-preview__bid-list {
  gap: 0.1rem;
}

.lux-hero-preview--live.is-live .lux-hero-preview__media--wide {
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.35);
}

/* —— Lux homepage: hero full-bleed above banner rails (Lux only) —— */
.lux-home-hero-stage {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.lux-home-hero-stage .lux-hero--cms {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.lux-hero--cms .lux-hero__wave {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}

.lux-hero--cms .lux-hero__wave svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(30px, 6.5vw, 50px);
}

@media (max-width: 899px) {
  .lux-home-hero-stage .lux-hero--cms {
    padding-bottom: clamp(10px, 2.5vw, 18px);
  }

  .lux-hero--cms .lux-hero__wave {
    display: block;
  }
}

.lux-home-hero-stage .lux-hero--cms .lux-hero__content {
  padding: 1.35rem clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 899px) {
  .lux-home-hero-stage .lux-hero--cms .lux-hero__content {
    padding-top: 1.35rem;
  }

  .lux-home-hero-stage .lux-hero--cms .lux-hero__main {
    padding-top: 0.4rem;
  }
}

@media (max-width: 767px) {
  .lux-home-hero-stage .lux-hero--cms {
    min-height: 0;
  }

  .lux-home-hero-stage .lux-hero--cms .lux-hero__content {
    padding: 1.45rem 1rem 1.65rem;
  }

  .lux-home-hero-stage .lux-hero--cms .lux-hero__main {
    padding-top: 0.5rem;
  }

  body.lux-body[data-lux-page="home"] .pf-banner-rail--left,
  body.lux-body[data-lux-page="home"] .pf-banner-rail--right {
    display: none;
  }

  body.lux-body[data-lux-page="home"] .lux-main {
    padding-bottom: 1rem;
  }
}

body.lux-body[data-lux-page="home"] .pf-market-layout--lux {
  margin-top: 0;
}

/* Skyscraper erst auf Höhe „Beliebte Kategorien“ (Lux Startseite) */
body.lux-body[data-lux-page="home"] .pf-banner-rail--left,
body.lux-body[data-lux-page="home"] .pf-banner-rail--right {
  margin-top: 2.75rem;
}

/* —— Lux homepage premium —— */
.lux-home .lux-section {
  padding: 2.75rem 1.25rem;
  max-width: 1280px;
  margin-inline: auto;
}

.lux-home .lux-section + .lux-section {
  border-top: 1px solid color-mix(in srgb, var(--lux-line) 80%, transparent);
}

.lux-home .lux-section__head {
  margin-bottom: 1.35rem;
}

.lux-home .lux-h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.lux-home .lux-tile {
  min-height: 58px;
  border-radius: 14px;
}

.lux-home .lux-tile__name {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lux-card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lux-card-grid .lux-card {
  height: 100%;
}

.lux-skeleton--grid {
  grid-column: 1 / -1;
  height: clamp(10rem, 22vw, 14rem);
  border-radius: var(--lux-radius);
}

.lux-home .lux-card {
  border-radius: 18px;
}

.lux-home .lux-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

html[data-ui-mode="dark"] .lux-home .lux-card,
html[data-bs-theme="dark"] .lux-home .lux-card,
html[data-ui-mode="dark"] .lux-home .lux-tile,
html[data-bs-theme="dark"] .lux-home .lux-tile {
  background: #121214;
  border-color: rgba(255, 255, 255, 0.07);
}

html[data-ui-mode="dark"] .lux-home .lux-empty__banner,
html[data-bs-theme="dark"] .lux-home .lux-empty__banner {
  background: #101012;
  border-color: rgba(255, 255, 255, 0.06);
}

.lux-home .lux-section--live {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 1.25rem auto 0;
  padding: 2.5rem 1.5rem;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, #ef4444 22%, var(--lux-line));
  background: color-mix(in srgb, #ef4444 4%, var(--lux-bg));
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.04);
}

.lux-home .lux-section + .lux-section--live,
.lux-home .lux-section--live + .lux-section {
  border-top: 0;
}

html[data-ui-mode="dark"] .lux-home .lux-section--live,
html[data-bs-theme="dark"] .lux-home .lux-section--live {
  background: color-mix(in srgb, #ef4444 2%, #080808);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991px) {
  .lux-hero--cms .lux-hero__layout {
    grid-template-columns: 1fr;
  }

  .lux-hero__visuals {
    width: 200px;
    max-width: 200px;
    margin-top: 0.35rem;
    justify-self: end;
  }

  .lux-hero--cms .lux-hero__kpis--corner {
    width: 100%;
    max-width: 520px;
    justify-self: stretch;
  }

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

@media (max-width: 767px) {
  .lux-hero__visuals {
    display: none !important;
    min-height: 0;
  }

  .lux-hero--cms .lux-hero__visuals {
    min-height: 0;
    margin-top: 0;
  }

  .lux-hero--cms .lux-hero__content {
    padding: 1.35rem 1rem 1.5rem;
  }

  .lux-hero--cms .lux-hero__title :is(h1, h2, h3, p) {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.15;
  }

  .lux-hero--cms .lux-hero__lead :is(p, span) {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .lux-hero--cms .lux-hero__kpis--corner {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .lux-hero--cms .lux-kpi__val {
    font-size: 1.3rem;
  }

  .lux-hero--cms .lux-kpi__lbl {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }

  .lux-home .lux-section {
    padding: 1.65rem 1rem;
  }

  .lux-home .lux-section--live {
    width: calc(100% - 1.25rem);
    margin: 0.85rem auto 0;
    padding: 1.35rem 0.85rem;
    border-radius: 20px;
  }

  .lux-home .lux-section__head {
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .lux-home .lux-section__head .lux-h2 {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.05rem;
  }

  .lux-home .lux-section__head .lux-link {
    flex-shrink: 0;
    padding: 0.36rem 0.75rem;
    font-size: 0.76rem;
  }

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

}

@media (max-width: 575px) {
  .lux-hero--cms .lux-hero__actions {
    width: 100%;
  }

  .lux-hero--cms .lux-cta {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 42px;
    padding-inline: 1rem;
  }
}

.lux-link {
  color: var(--lux-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.lux-link:hover {
  text-decoration: underline;
}

.lux-section__head .lux-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--lux-accent) 28%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 6%, var(--lux-surface));
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.lux-section__head .lux-link::after {
  content: "→";
  font-size: 0.9em;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.lux-section__head .lux-link:hover {
  text-decoration: none;
  border-color: color-mix(in srgb, var(--lux-accent) 45%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
  transform: translateY(-1px);
}

.lux-section__head .lux-link:hover::after {
  transform: translateX(3px);
}

html[data-ui-mode="dark"] .lux-home .lux-link,
html[data-bs-theme="dark"] .lux-home .lux-link {
  color: #5a8ec4;
}

html[data-ui-mode="dark"] .lux-home .lux-link:hover,
html[data-bs-theme="dark"] .lux-home .lux-link:hover {
  color: #7aa8d8;
}

html[data-ui-mode="light"] .lux-home .lux-link,
html[data-bs-theme="light"] .lux-home .lux-link {
  color: var(--lux-accent);
}

html[data-ui-mode="light"] .lux-home .lux-link:hover,
html[data-bs-theme="light"] .lux-home .lux-link:hover {
  color: var(--lux-accent-hover);
}

html[data-ui-mode="dark"] .lux-section__head .lux-link,
html[data-bs-theme="dark"] .lux-section__head .lux-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #93c5fd;
}

html[data-ui-mode="dark"] .lux-section__head .lux-link:hover,
html[data-bs-theme="dark"] .lux-section__head .lux-link:hover {
  border-color: rgba(147, 197, 253, 0.35);
  background: rgba(96, 165, 250, 0.14);
  color: #bfdbfe;
}

/* —— Live streams —— */
.lux-live-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: lux-live-pulse 1.6s ease-out infinite;
  vertical-align: middle;
  margin-right: 0.15rem;
}

@keyframes lux-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.lux-section--live .lux-h2 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lux-card--live {
  border-color: color-mix(in srgb, #ef4444 35%, var(--lux-line));
}

.lux-card__live {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* —— Vendor directory —— */
.lux-vendor-directory {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.lux-vendor-directory__hero {
  margin-bottom: 1.35rem;
  padding: 1.5rem 1.6rem 1.35rem;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--lux-line) 82%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lux-bg) 35%, var(--lux-surface)) 0%, var(--lux-surface) 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 32px rgba(15, 23, 42, 0.06);
}

.lux-vendor-directory__hero-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.15rem;
}

.lux-vendor-directory__hero-copy {
  min-width: 0;
  flex: 1 1 320px;
}

.lux-vendor-directory__hero-copy .lux-h1 {
  margin-bottom: 0.35rem;
}

.lux-vendor-directory__hero-copy .lux-muted {
  margin: 0;
  max-width: 42rem;
}

.lux-vendor-directory__count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.lux-vendor-directory__count[hidden] {
  display: none !important;
}

.lux-vendor-directory__toolbar {
  display: grid;
  gap: 0.85rem;
}

.lux-vendor-directory__search-field {
  position: relative;
  display: block;
}

.lux-vendor-directory__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lux-muted);
  font-size: 1rem;
  pointer-events: none;
}

.lux-vendor-directory__search-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--lux-line) 88%, transparent);
  background: var(--lux-bg);
  color: inherit;
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lux-vendor-directory__search-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--lux-accent) 45%, var(--lux-line));
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.04),
    0 0 0 3px color-mix(in srgb, var(--lux-accent) 14%, transparent);
}

.lux-vendor-directory__filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.lux-vendor-directory__filter {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.lux-vendor-directory__filter > span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-vendor-directory__results-wrap {
  position: relative;
  min-height: 4rem;
}

.lux-vendor-directory__status {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem 1.1rem;
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.lux-vendor-directory__status.is-active {
  display: flex;
}

.lux-vendor-directory__status[hidden],
.lux-vendor-directory__status[aria-hidden="true"]:not(.is-active) {
  display: none !important;
}

.lux-vendor-directory__results {
  transition: opacity 0.15s ease;
}

.lux-vendor-directory__results.is-loading {
  opacity: 0.55;
}

html[data-ui-mode="dark"] .lux-vendor-directory__hero,
html[data-bs-theme="dark"] .lux-vendor-directory__hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, #121214 100%);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

html[data-ui-mode="dark"] .lux-vendor-directory__search-input,
html[data-bs-theme="dark"] .lux-vendor-directory__search-input {
  background: #0d0d0f;
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .lux-vendor-directory__filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .lux-vendor-directory__hero {
    padding: 1.15rem 1rem 1rem;
    border-radius: 18px;
  }

  .lux-vendor-directory__filter-grid {
    grid-template-columns: 1fr;
  }
}

.lux-vendor-directory-grid {
  padding-top: 0;
  align-items: stretch;
}

.lux-vendor-directory-grid > .lux-vendor-directory-card,
.lux-vendor-directory-grid .lux-vendor-directory-card--stretch {
  height: 100%;
}

.lux-vendor-directory-card--stretch {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lux-vendor-directory-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.lux-vendor-directory-card__content {
  flex: 1;
  min-height: 0;
}

.lux-vendor-directory-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.lux-vendor-directory-card__rating .bi-star-fill {
  color: #f59e0b;
  font-size: 0.82rem;
}

.lux-vendor-directory-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--lux-muted) 7%, var(--lux-bg));
  border: 1px solid color-mix(in srgb, var(--lux-line) 70%, transparent);
}

.lux-vendor-directory-card__stats > div {
  text-align: center;
}

.lux-vendor-directory-card__stats dt {
  margin: 0 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-vendor-directory-card__stats dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lux-text);
}

.lux-vendor-directory-card__footer {
  margin-top: auto;
}

.lux-vendor-directory-card__cta.lux-btn--primary {
  min-height: 2.55rem;
  border-radius: 999px;
  font-weight: 600;
}

.lux-vendor-directory-card__head {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.05rem 0;
}

.lux-vendor-directory-card__logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--lux-radius-sm);
  overflow: hidden;
  background: color-mix(in srgb, var(--lux-muted) 12%, var(--lux-bg));
  display: grid;
  place-items: center;
}

.lux-vendor-directory-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-vendor-directory-card__logo-ph {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--lux-muted);
}

.lux-vendor-directory-card__meta {
  min-width: 0;
  flex: 1;
}

.lux-vendor-directory-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.lux-vendor-directory-card__username,
.lux-vendor-directory-card__rating-count {
  font-size: 0.88em;
  font-weight: 400;
}

.lux-vendor-directory-card__rating-count {
  white-space: nowrap;
}

.lux-vendor-directory-card__flag {
  margin-right: 0.35rem;
}

.lux-vendor-directory-card__loc-sep {
  margin: 0 0.2rem;
}

.lux-vendor-directory-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lux-badge--pill {
  font-size: 0.72rem;
}

.lux-badge--success {
  background: color-mix(in srgb, #22c55e 12%, var(--lux-surface));
  color: #16a34a;
}

.lux-badge--dark {
  background: color-mix(in srgb, var(--lux-text) 12%, var(--lux-surface));
  color: var(--lux-text);
}

.lux-vendor-directory-card__desc {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.lux-vendor-directory-card__loc {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
}

.lux-vendor-directory-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

/* —— Homepage vendor shop cards (premium) —— */
.lux-home-shop-grid {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lux-home-shop-grid .lux-home-shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  border-color: color-mix(in srgb, var(--lux-line) 88%, transparent);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform var(--lux-dur) var(--lux-ease),
    box-shadow var(--lux-dur) var(--lux-ease),
    border-color var(--lux-dur) var(--lux-ease);
}

.lux-home-shop-grid .lux-home-shop-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--lux-accent) 18%, var(--lux-line));
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 16px 40px rgba(15, 23, 42, 0.1);
}

.lux-home-shop-card__head {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--lux-line) 65%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--lux-bg) 40%, var(--lux-surface)) 0%,
    var(--lux-surface) 100%
  );
}

.lux-home-shop-card__logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--lux-muted) 10%, var(--lux-bg));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--lux-line) 80%, transparent),
    0 4px 14px rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
}

.lux-home-shop-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-home-shop-card__logo-ph {
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--lux-muted) 88%, var(--lux-text));
}

.lux-home-shop-card__identity {
  min-width: 0;
  flex: 1;
}

.lux-home-shop-card__name {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lux-home-shop-card__handle {
  margin: 0.15rem 0 0.4rem;
  font-size: 0.82rem;
  line-height: 1.2;
}

.lux-home-shop-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.lux-home-shop-card__rating .bi-star-fill {
  color: #f59e0b;
  font-size: 0.82rem;
}

.lux-home-shop-card__rating-count {
  font-weight: 500;
}

.lux-home-shop-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lux-home-shop-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 1rem 1.2rem 1.15rem;
}

.lux-home-shop-card__content {
  flex: 1;
  min-height: 0;
}

.lux-home-shop-card__desc {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--lux-text) 82%, var(--lux-muted));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lux-home-shop-card__loc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.lux-home-shop-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--lux-muted) 7%, var(--lux-bg));
  border: 1px solid color-mix(in srgb, var(--lux-line) 70%, transparent);
}

.lux-home-shop-card__stats > div {
  text-align: center;
}

.lux-home-shop-card__stats dt {
  margin: 0 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-home-shop-card__stats dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lux-text);
}

.lux-home-shop-card__footer {
  margin-top: auto;
  padding-top: 0.35rem;
}

.lux-home-shop-card__footer .lux-home-shop-card__stats {
  margin-bottom: 0.85rem;
}

.lux-home-shop-card__cta.lux-btn--primary {
  min-height: 2.65rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #1e40af 0%, #1e3a8a 100%);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.22);
}

.lux-home-shop-card__cta.lux-btn--primary:hover {
  background: linear-gradient(180deg, #1d4ed8 0%, #172554 100%);
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.28);
}

html[data-ui-mode="dark"] .lux-home-shop-card__head,
html[data-bs-theme="dark"] .lux-home-shop-card__head {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

html[data-ui-mode="dark"] .lux-home-shop-grid .lux-home-shop-card,
html[data-bs-theme="dark"] .lux-home-shop-grid .lux-home-shop-card {
  background: #121214;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

html[data-ui-mode="dark"] .lux-home-shop-card__stats,
html[data-bs-theme="dark"] .lux-home-shop-card__stats {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 991px) {
  .lux-home .lux-home-shop-grid.lux-card-grid,
  .lux-home .lux-home-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

@media (max-width: 639px) {
  .lux-home .lux-home-shop-grid.lux-card-grid,
  .lux-home .lux-home-shop-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .lux-home-shop-card__head {
    padding: 1rem 1rem 0.9rem;
  }

  .lux-home-shop-card__body {
    padding: 0.9rem 1rem 1rem;
  }

  .lux-home-shop-card__logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .lux-home-shop-card__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.55rem 0.5rem;
  }

  .lux-home-shop-card__stats dt {
    font-size: 0.62rem;
  }

  .lux-home-shop-card__stats dd {
    font-size: 0.9rem;
  }

  .lux-home-shop-card__cta.lux-btn--primary {
    min-height: 2.75rem;
  }
}

.lux-vendor-directory-empty__title {
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.lux-pagination,
.lux-pagination-wrap .lux-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  padding: 1rem 1rem 2.5rem;
}

.lux-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid color-mix(in srgb, var(--lux-muted) 35%, transparent);
  border-top-color: var(--lux-accent);
  border-radius: 50%;
  animation: lux-spin 0.7s linear infinite;
}

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

/* —— Icon fallback (FA primary, BI when kit missing) —— */
.sf-icon__bi {
  display: none;
}

/* —— Lux chrome (topbar + header) —— */
.no-fa-kit .sf-icon__fa {
  display: none !important;
}

.no-fa-kit .sf-icon__bi {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

.container-fluid {
  width: 100%;
  margin-inline: auto;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .px-lg-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.lux-chrome {
  position: sticky;
  top: 0;
  z-index: 500;
  overflow: visible;
  flex: 0 0 auto;
  --lux-sticky-below-chrome: calc(72px + 0.75rem);
}

@media (min-width: 992px) {
  .lux-chrome {
    --lux-sticky-below-chrome: calc(34px + 72px + 0.85rem);
  }
}

.lux-chrome .sf-storefront-topbar {
  position: relative;
  z-index: 2;
}

.lux-chrome .lux-header {
  position: relative;
  top: auto;
  z-index: 1;
}

@media (min-width: 900px) {
  .lux-chrome .lux-header--storefront {
    height: 72px;
  }
}

.lux-chrome .lux-header--storefront {
  background: color-mix(in srgb, var(--lux-surface) 94%, transparent);
  backdrop-filter: var(--lux-blur);
  -webkit-backdrop-filter: var(--lux-blur);
  box-shadow: 0 1px 0 var(--lux-line);
}

.lux-chrome .lux-header--storefront .lux-header__inner {
  max-width: 1280px;
}

.lux-header--storefront .lux-mega-cat {
  flex-shrink: 0;
}

.lux-header--storefront .lux-mega-cat__btn {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  border: 1px solid var(--lux-line) !important;
  background: var(--lux-surface) !important;
  color: inherit !important;
}

.lux-header--storefront .lux-mega-cat__btn i {
  font-size: 1.25rem;
}

.lux-header--storefront .market-cat-drop .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  display: none;
  margin-top: 0 !important;
  transform: none !important;
  inset: auto auto auto 0;
}

@media (min-width: 992px) {
  .lux-header--storefront .market-cat-drop:hover .dropdown-menu,
  .lux-header--storefront .market-cat-drop.is-open .dropdown-menu,
  .lux-header--storefront .market-cat-drop:focus-within .dropdown-menu {
    display: block;
  }
}

.lux-header--storefront .market-categories-menu {
  z-index: 400;
  background: #0f1b2e;
  border-color: rgba(148, 163, 184, 0.22);
  color: #c5d0de;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  max-height: min(420px, calc(100dvh - 128px));
  overflow: hidden;
}

.lux-header--storefront .market-categories-shell {
  min-height: 0;
  height: min(380px, calc(100dvh - 148px));
  max-height: min(380px, calc(100dvh - 148px));
  align-items: stretch;
}

.lux-header--storefront .market-categories-left {
  border-right-color: rgba(148, 163, 184, 0.18);
  background: #0a1220;
  max-height: 100%;
  min-height: 0;
  align-self: stretch;
  overflow-x: hidden;
  overflow-y: auto;
}

.lux-header--storefront .market-categories-right {
  min-height: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lux-header--storefront .market-categories-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.lux-header--storefront .market-sub-list {
  max-height: 100%;
  overflow-y: auto;
}

.lux-chrome .sf-storefront-topbar__trust i.bi {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 1;
  color: #93c5fd;
}

.lux-header--storefront .market-categories-filter-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.2);
}

.lux-header--storefront .market-categories-filter {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
}

.lux-header--storefront .market-categories-filter::placeholder {
  color: #94a3b8;
}

.lux-header--storefront .market-root-item {
  color: #c5d0de;
}

.lux-header--storefront .market-root-item:hover,
.lux-header--storefront .market-root-item.is-active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.22);
  color: #dbe4f0;
  transform: none;
  box-shadow: none;
}

.lux-header--storefront .market-root-item.is-active .market-root-count {
  background: rgba(148, 163, 184, 0.22);
  color: #e2e8f0;
}

.lux-header--storefront .market-categories-head,
.lux-header--storefront .market-categories-head a {
  color: #e2e8f0;
}

.lux-header--storefront .market-sub-list a {
  color: #94a3b8;
}

.lux-header--storefront .market-sub-list a:hover {
  color: #f8fafc;
}

.lux-header--storefront .market-cat-drop {
  position: relative;
  z-index: 120;
}

.lux-header--storefront .lux-header__inner {
  overflow: visible;
}

.lux-chrome .lux-header--storefront {
  overflow: visible;
}

.lux-header--storefront .form-control {
  display: block;
  width: 100%;
  padding: 0.35rem 0.55rem;
  font: inherit;
  font-size: 0.85rem;
  line-height: 1.4;
  border-radius: 6px;
  outline: none;
}

.lux-header--storefront .form-control:focus {
  border-color: color-mix(in srgb, var(--lux-accent) 45%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lux-accent) 18%, transparent);
}

.sf-storefront-topbar .dropdown {
  position: relative;
}

.sf-storefront-topbar .dropdown-menu,
.sf-storefront-topbar .dropdown-menu li {
  list-style: none;
}

.sf-storefront-topbar .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: auto;
  margin: 0;
  padding: 6px;
  min-width: 180px;
  list-style: none;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, #152238 0%, #0f1b2e 100%);
  color: #c5d0de;
}

.sf-storefront-topbar .dropdown.is-open .dropdown-menu {
  display: block;
}

.sf-storefront-topbar .dropdown-menu .market-lang-menu__head {
  padding: 0.35rem 0.55rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.sf-storefront-topbar .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  color: #c5d0de;
  text-decoration: none;
  font-size: 0.85rem;
}

.sf-storefront-topbar .dropdown-menu .dropdown-item:hover,
.sf-storefront-topbar .dropdown-menu .dropdown-item.is-active,
.sf-storefront-topbar .dropdown-menu .dropdown-item.active,
.sf-storefront-topbar .dropdown-menu .dropdown-item:active {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu {
  background: #fff;
  border-color: #dbe4f0;
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .market-lang-menu__head,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .market-lang-menu__head {
  color: #64748b;
}

html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item {
  color: #0f172a;
}

html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item:hover,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item:hover,
html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item:focus,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item:focus,
html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item.is-active,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item.is-active,
html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item.active,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item.active,
html[data-ui-mode="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item:active,
html[data-bs-theme="light"] .sf-storefront-topbar .dropdown-menu .dropdown-item:active {
  background: #eef2ff;
  color: #1e3a8a;
}

/* —— Homepage empty states (full width) —— */
.lux-card-grid .lux-empty--section {
  grid-column: 1 / -1;
}

.lux-empty--section {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.lux-empty__banner {
  width: 100%;
  min-height: 9.5rem;
  height: auto;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1rem, 3vw, 1.75rem);
  border-radius: 22px;
  background: color-mix(in srgb, var(--lux-muted) 7%, var(--lux-surface));
  border: 1px solid var(--lux-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
}

.lux-empty__banner--auction {
  position: relative;
  overflow: hidden;
  min-height: clamp(10.5rem, 20vw, 14rem);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.lux-empty--auction-blue .lux-empty__banner--auction {
  border-color: color-mix(in srgb, #2563eb 28%, var(--lux-line));
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.12), transparent 42%),
    linear-gradient(145deg, #f8fafc 0%, #eff6ff 55%, var(--lux-surface) 100%);
}

.lux-empty--auction-amber .lux-empty__banner--auction {
  border-color: color-mix(in srgb, #d97706 28%, var(--lux-line));
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.14), transparent 42%),
    linear-gradient(145deg, #fffbeb 0%, #fef3c7 45%, var(--lux-surface) 100%);
}

.lux-empty--auction-rose .lux-empty__banner--auction {
  border-color: color-mix(in srgb, #e11d48 24%, var(--lux-line));
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 63, 94, 0.12), transparent 42%),
    linear-gradient(145deg, #fff1f2 0%, #ffe4e6 45%, var(--lux-surface) 100%);
}

.lux-empty--auction-violet .lux-empty__banner--auction {
  border-color: color-mix(in srgb, #7c3aed 28%, var(--lux-line));
  background:
    radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.14), transparent 42%),
    linear-gradient(145deg, #f5f3ff 0%, #ede9fe 45%, var(--lux-surface) 100%);
}

.lux-empty__auction-glow {
  position: absolute;
  inset: -35% auto auto -18%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 70%);
  pointer-events: none;
}

.lux-empty--auction-amber .lux-empty__auction-glow {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
}

.lux-empty--auction-rose .lux-empty__auction-glow {
  background: radial-gradient(circle, rgba(244, 63, 94, 0.16), transparent 70%);
}

.lux-empty--auction-violet .lux-empty__auction-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
}

.lux-empty__auction-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
  font-size: 1.25rem;
}

.lux-empty--auction-amber .lux-empty__auction-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

.lux-empty--auction-rose .lux-empty__auction-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.28);
}

.lux-empty--auction-violet .lux-empty__auction-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}

.lux-empty--auction .lux-empty__title,
.lux-empty--auction .lux-empty__hint {
  position: relative;
  z-index: 1;
}

.lux-empty__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--lux-text);
}

.lux-empty__hint {
  margin: 0;
  max-width: 36rem;
  color: var(--lux-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.lux-empty--live-premium .lux-empty__banner--live {
  position: relative;
  overflow: hidden;
  min-height: clamp(11rem, 22vw, 15rem);
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, #ef4444 28%, var(--lux-line));
  background:
    radial-gradient(circle at 88% 18%, rgba(239, 68, 68, 0.18), transparent 42%),
    radial-gradient(circle at 12% 82%, rgba(59, 130, 246, 0.2), transparent 45%),
    linear-gradient(135deg, color-mix(in srgb, var(--lux-surface) 82%, #1e3a8a) 0%, color-mix(in srgb, var(--lux-surface) 90%, #0f172a) 100%);
}

.lux-empty__live-glow {
  position: absolute;
  inset: -30% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.22), transparent 70%);
  pointer-events: none;
}

.lux-empty__live-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.35);
  font-size: 1.35rem;
}

.lux-empty--live-premium .lux-empty__title {
  color: var(--lux-text);
}

.lux-empty__live-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 0.65rem;
}

.lux-empty__chip {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lux-text);
  border: 1px solid color-mix(in srgb, var(--lux-line) 80%, #60a5fa);
  background: color-mix(in srgb, var(--lux-surface) 70%, #1d4ed8 30%);
}

@media (max-width: 767px) {
  .lux-empty__banner,
  .lux-empty__banner--auction,
  .lux-empty--live-premium .lux-empty__banner--live {
    min-height: 0;
    height: auto;
    overflow: visible;
    padding: 1.25rem 1rem 1.35rem;
  }

  .lux-empty__live-chips {
    margin-top: 0.5rem;
    gap: 0.35rem;
  }

  .lux-empty__chip {
    font-size: 0.68rem;
    padding: 0.24rem 0.55rem;
  }
}

/* —— Storefront footer (Lux) —— */
.lux-footer--storefront {
  position: relative;
  z-index: 8;
  margin-top: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: linear-gradient(180deg, #0f1b2e 0%, #0a1220 100%);
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.lux-footer--storefront .lux-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
}

.lux-footer--storefront .lux-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.75rem 2rem;
}

.lux-footer--storefront .lux-footer__title {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 78%, #94a3b8);
}

.lux-footer--storefront .lux-footer__muted,
.lux-footer--storefront .lux-footer__text {
  color: #8b97a8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.lux-footer--storefront .lux-footer__col--about .lux-footer__muted {
  margin: 0 0 0.75rem;
}

.lux-footer--storefront .lux-footer__col--about {
  min-width: 0;
}

.lux-footer--storefront .lux-footer__contact-box {
  display: grid;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: color-mix(in srgb, #fff 8%, transparent);
  border: 1px solid color-mix(in srgb, #fff 12%, transparent);
  max-width: 100%;
}

.lux-footer--storefront .lux-footer__contact-box .lux-footer__link--block {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  white-space: nowrap;
}

.lux-footer--storefront .lux-footer__contact-box .lux-footer__link--block i {
  flex-shrink: 0;
  color: #94a3b8;
}

.lux-footer--storefront .lux-footer__contact-box .lux-footer__text {
  white-space: nowrap;
  font-size: 0.82rem;
}

.lux-footer--compact .lux-footer__legal {
  border-top: 1px solid color-mix(in srgb, #fff 10%, transparent);
}

.lux-footer--storefront .lux-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.lux-footer--storefront .lux-footer__links .pf-footer-links__cookie {
  list-style: none;
  margin-top: 0.35rem;
  margin-bottom: 4px;
  width: fit-content;
  max-width: 100%;
}

.lux-footer--storefront .lux-footer__links .sf-cookie-footer-pill {
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 0.1rem;
  padding: 0.32rem 0.62rem 0.32rem 0.52rem;
  gap: 0.4rem;
}

.lux-footer--storefront .sf-cookie-footer-pill__text {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  font-size: 0.7rem;
}

.lux-footer--storefront .sf-cookie-footer-pill__line {
  display: inline;
  white-space: nowrap;
}

.lux-footer--storefront .lux-footer__link {
  color: #7d8a9c;
  text-decoration: none;
  font-size: 0.88rem;
}

.lux-footer--storefront .lux-footer__link:hover,
.lux-footer--storefront .lux-footer__link--btn:hover {
  color: #a8b6c8;
  text-decoration: underline;
}

.lux-footer--storefront .lux-footer__link--btn {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.lux-footer--storefront .lux-footer__pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lux-footer--storefront .lux-footer__pay-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 2.1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: color-mix(in srgb, #fff 12%, transparent);
  border: 1px solid color-mix(in srgb, #fff 18%, transparent);
  color: #f8fafc;
  cursor: help;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lux-footer--storefront .lux-footer__pay-badge:hover,
.lux-footer--storefront .lux-footer__pay-badge:focus-visible {
  color: #fff;
  background: color-mix(in srgb, #fff 14%, #111827);
  border-color: color-mix(in srgb, #fff 24%, transparent);
  outline: none;
}

.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 0.15rem);
  left: 50%;
  transform: translateX(-50%);
  border: 0.35rem solid transparent;
  border-top-color: rgba(15, 23, 42, 0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 5;
}

.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]::after {
  content: attr(data-sf-tip);
  position: absolute;
  bottom: calc(100% + 0.55rem);
  left: 50%;
  min-width: 8rem;
  max-width: 14rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.95);
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  transform: translateX(-50%) translateY(0.15rem);
  z-index: 6;
}

.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]:hover::before,
.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]:hover::after,
.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]:focus-visible::before,
.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]:hover::after,
.lux-footer--storefront .lux-footer__pay-badge[data-sf-tip]:focus-visible::after {
  transform: translateX(-50%) translateY(0);
}

.lux-footer--storefront .lux-footer__pay-badge .sf-icon__fa {
  display: inline-block;
  font-size: 1.15rem;
}

.no-fa-kit .lux-footer--storefront .lux-footer__pay-badge .sf-icon__fa {
  display: none !important;
}

.no-fa-kit .lux-footer--storefront .lux-footer__pay-badge .sf-icon__bi {
  display: inline-block !important;
  font-size: 1.15rem;
}

.lux-footer--storefront .lux-footer__promo {
  margin-top: 0.15rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.lux-footer--storefront .pf-footer-promo {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.lux-footer--storefront .pf-footer-promo__row {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  color: #94a3b8;
}

.lux-footer--storefront .pf-footer-promo__row--solo {
  display: inline-flex;
}

.lux-footer--storefront .pf-footer-promo__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.lux-footer--storefront .pf-footer-promo__col--social {
  border-left: 1px solid color-mix(in srgb, #fff 12%, transparent);
  padding-left: 0.85rem;
  margin-left: 0.85rem;
}

.lux-footer--storefront .pf-footer-promo__title {
  color: color-mix(in srgb, #fff 78%, #94a3b8);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.lux-footer--storefront .pf-footer-store-badges {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

.lux-footer--storefront .pf-footer-store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.55rem;
  background: #111827;
  border: 1px solid color-mix(in srgb, #fff 22%, transparent);
  color: #d1dae6 !important;
  text-decoration: none;
  overflow: hidden;
}

.lux-footer--storefront .pf-footer-store-badge .sf-icon__fa {
  display: inline-block;
  font-size: 1.35rem;
}

.no-fa-kit .lux-footer--storefront .pf-footer-store-badge .sf-icon__fa {
  display: none !important;
}

.no-fa-kit .lux-footer--storefront .pf-footer-store-badge .sf-icon__bi {
  display: inline-block !important;
  font-size: 1.35rem;
}

.lux-footer--storefront .pf-footer-store-badge__lines {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: #d1dae6 !important;
}

.lux-footer--storefront .pf-footer-store-badge__lines small {
  font-size: 0.58rem;
  opacity: 0.88;
}

.lux-footer--storefront .pf-footer-store-badge__lines strong {
  font-size: 0.92rem;
}

.lux-footer--storefront .pf-footer-social {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lux-footer--storefront .pf-footer-social__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, #fff 10%, transparent);
  border: 1px solid color-mix(in srgb, #fff 16%, transparent);
  color: #e8eef8 !important;
  text-decoration: none;
  overflow: hidden;
}

.lux-footer--storefront .pf-footer-social__link .sf-icon__fa {
  display: inline-block;
  font-size: 1.1rem;
}

.no-fa-kit .lux-footer--storefront .pf-footer-social__link .sf-icon__fa {
  display: none !important;
}

.no-fa-kit .lux-footer--storefront .pf-footer-social__link .sf-icon__bi {
  display: inline-block !important;
  font-size: 1.1rem;
}

.lux-footer--storefront .pf-footer-social__link--pill {
  width: auto;
  min-width: 4.5rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.lux-footer--storefront .pf-footer-social__link:hover,
.lux-footer--storefront .pf-footer-store-badge:hover {
  color: #fff !important;
  background: color-mix(in srgb, #fff 14%, #111827);
}

.lux-footer--storefront .pf-footer-soon-target {
  cursor: not-allowed;
}

.lux-footer--storefront .pf-footer-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  background: rgba(15, 23, 42, 0.45);
  color: transparent;
  font-size: 0;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 2;
}

.lux-footer--storefront .pf-footer-soon-overlay::before {
  content: '';
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.lux-footer--storefront .pf-footer-soon-overlay--round {
  border-radius: 999px;
}

.lux-footer--storefront .pf-footer-soon-target:hover .pf-footer-soon-overlay,
.lux-footer--storefront .pf-footer-soon-target:focus-visible .pf-footer-soon-overlay,
.lux-footer--storefront .pf-footer-soon-target.is-soon-open .pf-footer-soon-overlay {
  opacity: 1;
}

@media (max-width: 767px) {
  .lux-footer--storefront .lux-footer__inner {
    padding: 2rem 1rem 0.85rem;
  }

  .lux-footer--storefront .lux-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }

  .lux-footer--storefront .lux-footer__col--about,
  .lux-footer--storefront .lux-footer__col--pay {
    grid-column: 1 / -1;
  }

  .lux-footer--storefront .lux-footer__col--pay {
    text-align: center;
  }

  .lux-footer--storefront .lux-footer__pay-badges {
    justify-content: center;
  }

  .lux-footer--storefront .pf-footer-social {
    display: grid;
    grid-template-columns: repeat(3, 2.5rem);
    justify-content: center;
    justify-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 12.5rem;
    margin-inline: auto;
  }

  .lux-footer--storefront .pf-footer-social__link {
    width: 2.5rem;
    height: 2.5rem;
  }

  .lux-footer--storefront .pf-footer-social__link--pill {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 12.5rem;
    min-width: 0;
    height: 2.5rem;
    padding: 0 1.15rem;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
  }

  .lux-footer--storefront .pf-footer-social__link--pill span {
    display: inline;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .lux-footer--storefront .lux-footer__contact-box {
    max-width: 100%;
  }

  .lux-footer--storefront .lux-footer__contact-box .lux-footer__link--block {
    white-space: normal;
  }

  .lux-footer--storefront .lux-footer__promo {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
  }

  .lux-footer--storefront .pf-footer-promo__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lux-footer--storefront .pf-footer-promo__col--social {
    border-left: 0;
    padding-left: 0;
  }

  .lux-footer--storefront .lux-footer__legal-inner {
    padding: 0.75rem 1rem;
  }
}

.lux-footer--storefront .lux-footer__legal {
  background: #eceff3;
  color: #334155;
  border-top: 1px solid color-mix(in srgb, #0f172a 8%, transparent);
}

html[data-ui-mode="dark"] .lux-footer--storefront .lux-footer__legal,
html[data-bs-theme="dark"] .lux-footer--storefront .lux-footer__legal {
  background: #1a2332;
  color: #cbd5e1;
  border-top-color: color-mix(in srgb, #fff 10%, transparent);
}

.lux-footer--storefront .lux-footer__legal-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
}

.lux-footer--storefront .lux-footer__legal-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  text-align: center;
}

.lux-footer--storefront .lux-footer__legal-widgets {
  position: fixed;
  right: 0.5rem;
  bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
  top: auto;
  transform: none;
  z-index: 10045;
  pointer-events: none;
}

.lux-footer--storefront .lux-footer__legal-widgets > * {
  pointer-events: auto;
}

body.lux-body .sf-wave--footer-legal {
  position: relative;
}

body.lux-body .sf-wave--footer-legal .sf-wave__trigger {
  min-width: auto;
  height: 32px;
  padding: 0 0.55rem;
  font-size: 0.68rem;
  gap: 0.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
}

body.lux-body .sf-wave--footer-legal .sf-wave__panel {
  position: fixed;
  right: 0.5rem;
  bottom: calc(3.35rem + env(safe-area-inset-bottom, 0px));
  left: auto;
  top: auto;
  transform: none;
  z-index: 10050;
}

@media (max-width: 767px) {
  .lux-footer--storefront .lux-footer__legal-widgets {
    right: 0.35rem;
    bottom: calc(0.45rem + env(safe-area-inset-bottom, 0px));
  }
}

.lux-footer--storefront .lux-footer__legal .lux-footer__muted {
  color: #475569;
  margin: 0;
}

html[data-ui-mode="dark"] .lux-footer--storefront .lux-footer__legal .lux-footer__muted,
html[data-bs-theme="dark"] .lux-footer--storefront .lux-footer__legal .lux-footer__muted {
  color: #94a3b8;
}

.lux-footer--storefront .lux-footer__made-in {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.35rem;
  background: #fff;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.lux-footer--storefront .lux-footer__made-in-flag {
  display: flex;
  flex-direction: column;
  width: 1.1rem;
  height: 1.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.lux-footer--storefront .lux-footer__made-in-stripe {
  flex: 1;
}

.lux-footer--storefront .lux-footer__made-in-stripe--black {
  background: #111827;
}

.lux-footer--storefront .lux-footer__made-in-stripe--red {
  background: #dc2626;
}

.lux-footer--storefront .lux-footer__made-in-stripe--gold {
  background: #f59e0b;
}

.lux-footer--storefront .lux-footer__made-in-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lux-footer--storefront .lux-footer__made-in-text small {
  font-size: 0.58rem;
  color: #64748b;
  letter-spacing: 0.04em;
}

.lux-footer--storefront .lux-footer__made-in-text strong {
  font-size: 0.95rem;
  color: #1d4ed8;
  font-weight: 700;
}

html[data-ui-mode="dark"] .lux-footer--storefront .lux-footer__made-in,
html[data-bs-theme="dark"] .lux-footer--storefront .lux-footer__made-in {
  background: #0f172a;
  border-color: color-mix(in srgb, #fff 14%, transparent);
}

html[data-ui-mode="dark"] .lux-footer--storefront .lux-footer__made-in-flag,
html[data-bs-theme="dark"] .lux-footer--storefront .lux-footer__made-in-flag {
  border-color: color-mix(in srgb, #fff 14%, transparent);
}

html[data-ui-mode="dark"] .lux-footer--storefront .lux-footer__made-in-text small,
html[data-bs-theme="dark"] .lux-footer--storefront .lux-footer__made-in-text small {
  color: #94a3b8;
}

html[data-ui-mode="dark"] .lux-footer--storefront .lux-footer__made-in-text strong,
html[data-bs-theme="dark"] .lux-footer--storefront .lux-footer__made-in-text strong {
  color: #93c5fd;
}

/* ---- Auth premium + account additions ---- */
.lux-auth-premium {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.25rem auto;
}

.lux-auth-premium__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
}

.lux-auth-premium__trust,
.lux-auth-premium__card {
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
  padding: clamp(1rem, 2.5vw, 1.65rem);
}

.lux-auth-premium__trust-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--lux-accent) 16%, var(--lux-surface));
}

.lux-auth-premium__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lux-muted);
}

.lux-auth-premium__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.lux-auth-premium__lead {
  margin: 0 0 1rem;
  color: var(--lux-muted);
}

.lux-auth-premium__links {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lux-auth-premium__links a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

.lux-auth-premium__links a:hover {
  text-decoration: underline;
}

.lux-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.lux-panel__body {
  display: grid;
  gap: 0.85rem;
}

.lux-list-toolbar {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.lux-list-toolbar__search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.lux-list-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.lux-list-toolbar__filter {
  display: inline-flex;
}

.lux-list-toolbar__filter,
.lux-list-toolbar__filters a {
  font-size: 0.85rem;
}

.lux-list-toolbar__filters a {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--lux-line);
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
}

.lux-list-toolbar__filters a.is-active {
  border-color: color-mix(in srgb, var(--lux-accent) 50%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
}

.lux-notif-card,
.lux-cart-line,
.lux-msg-thread-list .lux-list-card,
.lux-msg-chat .lux-chat {
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-sm);
  background: color-mix(in srgb, var(--lux-surface) 94%, transparent);
}

.lux-notif-card {
  padding: 0.85rem;
  margin-bottom: 0.7rem;
}

.lux-notif-card.is-unread {
  border-color: color-mix(in srgb, var(--lux-accent) 45%, var(--lux-line));
  box-shadow: inset 3px 0 0 var(--lux-accent);
}

.lux-notif-list {
  display: grid;
  gap: 0.65rem;
}

.lux-notif-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.lux-notif-card__icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lux-notif-card__icon--message { color: #2563eb; background: rgba(37, 99, 235, 0.12); }
.lux-notif-card__icon--ticket { color: #7c3aed; background: rgba(109, 40, 217, 0.12); }
.lux-notif-card__icon--invoice { color: #d97706; background: rgba(217, 119, 6, 0.12); }
.lux-notif-card__icon--transaction { color: #059669; background: rgba(5, 150, 105, 0.12); }
.lux-notif-card__icon--auction_event { color: #b45309; background: rgba(180, 83, 9, 0.12); }
.lux-notif-card__icon--default { color: var(--lux-accent); background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface)); }

.lux-notif-card__copy {
  min-width: 0;
}

.lux-notif-card__copy .lux-h2 {
  font-size: 0.95rem;
  margin: 0;
}

.lux-notif-card__message {
  margin: 0.35rem 0 0;
  color: var(--lux-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lux-notif-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--lux-line);
}

.lux-cart-line {
  padding: 0.85rem;
  margin-bottom: 0.7rem;
  display: grid;
  gap: 0.6rem;
}

.lux-cart-line.is-disabled {
  opacity: 0.7;
}

.lux-cart-page {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
}

@media (min-width: 992px) {
  .lux-cart-page {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  }
}

.lux-panel--cart,
.lux-panel--cart-summary {
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 98%, transparent);
  box-shadow: var(--lux-shadow);
}

.lux-panel--cart-summary {
  position: sticky;
  top: calc(var(--lux-sticky-below-chrome, 5.5rem) + 0.75rem);
}

.lux-cart-page__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lux-line);
}

.lux-cart-page__heading {
  margin: 0;
  font-size: 1.05rem;
}

.lux-cart-page__count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lux-muted);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lux-line) 45%, transparent);
}

.lux-cart-page__list {
  display: grid;
  gap: 0.85rem;
}

.lux-cart-page__subtotal {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lux-cart-page__hint {
  font-size: 0.82rem;
  line-height: 1.45;
}

.lux-cart-page__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.lux-cart-card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--lux-radius-sm);
  border: 1px solid color-mix(in srgb, var(--lux-line) 80%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--lux-surface) 100%, #fff 4%), color-mix(in srgb, var(--lux-surface) 96%, transparent));
  box-shadow: 0 1px 0 color-mix(in srgb, #fff 40%, transparent) inset;
}

.lux-cart-card.is-disabled {
  opacity: 0.72;
}

.lux-cart-card__thumb {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.65rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--lux-line) 35%, transparent);
  flex-shrink: 0;
}

.lux-cart-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-cart-card__thumb-fallback {
  font-size: 1.45rem;
  color: var(--lux-muted);
}

.lux-cart-card__body {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.lux-cart-card__head {
  display: block;
}

.lux-cart-card__meta {
  min-width: 0;
}

.lux-cart-card__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--lux-text);
  text-decoration: none;
}

.lux-cart-card__title:hover {
  color: var(--lux-accent);
}

.lux-cart-card__shop {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--lux-muted);
}

.lux-cart-card__qty {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
  min-width: 3.5rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--lux-accent) 25%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  flex-shrink: 0;
}

.lux-cart-card__qty-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-cart-card__qty-val {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--lux-text);
}

.lux-cart-card__foot .sf-cart-qty {
  flex-shrink: 0;
}

.lux-cart-card__foot .sf-cart-qty__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-cart-card__foot .sf-cart-qty--static .sf-cart-qty__pill {
  min-width: 2.5rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--lux-accent) 25%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  color: var(--lux-text);
  box-shadow: none;
}

.lux-cart-card__foot .sf-cart-qty__controls {
  border-radius: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--lux-line) 80%, transparent);
  background: var(--lux-surface);
  box-shadow: none;
}

.lux-cart-card__foot .sf-cart-qty__val {
  color: var(--lux-text);
}

.lux-cart-card__warn {
  margin: 0;
  font-size: 0.78rem;
  color: #dc2626;
}

.lux-cart-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 0.55rem;
  border-top: 1px solid color-mix(in srgb, var(--lux-line) 70%, transparent);
}

.lux-cart-card--page .lux-cart-card__remove {
  margin-left: auto;
}

.lux-cart-card__prices {
  display: grid;
  gap: 0.15rem;
}

.lux-cart-card__unit {
  font-size: 0.74rem;
  color: var(--lux-muted);
}

.lux-cart-card__total {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.lux-cart-card__remove {
  margin: 0;
}

.lux-cart-card__remove .lux-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 575.98px) {
  .lux-cart-card {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .lux-cart-card__thumb {
    width: 4.25rem;
    height: 4.25rem;
  }
}

.lux-msg-thread-list {
  display: grid;
  gap: 0.6rem;
}

.lux-msg-chat {
  display: grid;
  gap: 0.7rem;
}

body.lux-body[data-lux-page="auth"] .lux-auth-premium__trust,
body.lux-body[data-lux-page="auth"] .lux-auth-premium__card {
  background: var(--lux-surface);
  border-color: rgba(255, 255, 255, 0.13);
}

body.lux-body[data-lux-page="account"] .lux-kpi-row > div {
  background: var(--lux-surface);
  border-color: var(--lux-line);
}

body.lux-body[data-lux-page="account"] .lux-list-toolbar__filters a,
body.lux-body[data-lux-page="account"] .lux-notif-card,
body.lux-body[data-lux-page="account"] .lux-cart-line,
body.lux-body[data-lux-page="account"] .lux-msg-thread-list .lux-list-card,
body.lux-body[data-lux-page="account"] .lux-msg-chat .lux-chat {
  background: var(--lux-surface);
  border-color: var(--lux-line);
}

.lux-auth-premium--register {
  display: flex;
  justify-content: center;
  padding: 1rem 0 1.5rem;
}

.lux-auth-premium__card--wide {
  width: min(100%, 720px);
  margin: 0 auto;
}

body.lux-body[data-lux-page="content"] {
  background: var(--lux-bg);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="content"] .lux-section,
body.lux-body[data-lux-page="content"] .lux-portal {
  color: var(--lux-text);
}

.lux-portal-hero {
  margin-bottom: 1.5rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
}

.lux-portal-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-accent);
}

.lux-portal-hero__title {
  margin: 0 0 0.45rem;
}

.lux-portal-hero__lead {
  margin: 0;
  max-width: 52ch;
}

.lux-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
}

.lux-news-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
  color: var(--lux-text);
}

.lux-news-card--featured {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--lux-accent) 14%, transparent), transparent 42%),
    var(--lux-surface);
}

.lux-news-card__date {
  font-size: 0.8rem;
  color: var(--lux-muted);
}

.lux-news-card__title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.lux-news-card__title a {
  color: var(--lux-text);
  text-decoration: none;
}

.lux-news-card__title a:hover {
  color: var(--lux-accent);
}

.lux-news-card__teaser {
  margin: 0;
  color: var(--lux-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lux-news-card__more {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lux-accent);
  text-decoration: none;
}

.lux-news-card__more:hover {
  text-decoration: underline;
}

.lux-news-article {
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-radius: 18px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
}

.lux-news-article__date {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: var(--lux-muted);
}

.lux-portal-hero--news .lux-portal-hero__eyebrow a {
  color: var(--lux-accent);
  text-decoration: none;
  font-weight: 700;
}

.lux-portal-hero--news .lux-portal-hero__eyebrow a:hover {
  text-decoration: underline;
}

.lux-news-article__prose {
  color: var(--lux-text);
  line-height: 1.75;
  font-size: 1rem;
}

.lux-news-article__prose p {
  margin: 0 0 1rem;
}

.lux-news-article__prose ul,
.lux-news-article__prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.lux-news-article__prose li {
  margin-bottom: 0.35rem;
}

.lux-news-article__prose li::marker {
  color: var(--lux-accent);
}

.lux-news-article__prose strong {
  color: var(--lux-text);
  font-weight: 600;
}

.lux-news-article__foot {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--lux-line);
}

.lux-portal__category {
  margin: 1.5rem 0 0.75rem;
  color: #cbd5e1;
}

body.lux-body[data-lux-page="content"] .lux-faq__item {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  color: var(--lux-text);
}

body.lux-body[data-lux-page="content"] .lux-faq__item summary {
  color: var(--lux-text);
}

body.lux-body[data-lux-page="content"] .lux-prose {
  color: var(--lux-muted);
  margin-top: 0.5rem;
}

.lux-cms-page__card {
  overflow: hidden;
}

.lux-cms-page__card .lux-panel__head {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--lux-line);
}

.lux-cms-page__card .lux-h1 {
  margin: 0.35rem 0 0;
}

.lux-cms-page__prose {
  color: var(--lux-text);
}

.lux-cms-page__prose h2,
.lux-cms-page__prose h3,
.lux-cms-page__prose h4 {
  color: var(--lux-text);
  margin-top: 1.5rem;
}

.lux-cms-page__prose a {
  color: var(--lux-accent);
}

.lux-cms-page__actions {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lux-line);
}

body.lux-body[data-lux-page="auction"] .lux-main {
  background: var(--lux-bg);
}

body.lux-body[data-lux-page="auction"] .lux-auction-premium {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
}

body.lux-body[data-lux-page="auction"] .ab-mini-card .row {
  --bs-gutter-x: 0.85rem;
  --bs-gutter-y: 0.85rem;
}

body.lux-body[data-lux-page="auction"] .ab-mini-listing {
  border: 1px solid var(--lux-line);
  border-radius: 14px;
  padding: 0.5rem;
  background: var(--lux-surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.lux-body[data-lux-page="auction"] .ab-mini-card__link:hover .ab-mini-listing {
  border-color: color-mix(in srgb, var(--lux-accent) 35%, var(--lux-line));
  box-shadow: var(--lux-shadow);
}

body.lux-body[data-lux-page="auction"] .ab-mini-media {
  margin-bottom: 0.45rem;
  background: color-mix(in srgb, var(--lux-muted) 10%, var(--lux-bg));
}

body.lux-body[data-lux-page="auction"] .ab-mini-listing__title {
  color: var(--lux-text);
}

body.lux-body[data-lux-page="auction"] .ab-mini-listing__price {
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="auction"] .ab-price-box--reverse strong {
  color: #7c3aed;
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="auction"] .ab-countdown-box strong,
html[data-ui-mode="light"] body.lux-body[data-lux-page="auction"] .sf-countdown-badge,
html[data-bs-theme="light"] body.lux-body[data-lux-page="auction"] .ab-countdown-box strong,
html[data-bs-theme="light"] body.lux-body[data-lux-page="auction"] .sf-countdown-badge {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
  border: 1px solid color-mix(in srgb, #1e3a8a 35%, transparent);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.18);
  letter-spacing: 0.03em;
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="auction"] .ab-auction-page,
html[data-bs-theme="light"] body.lux-body[data-lux-page="auction"] .ab-auction-page {
  color: var(--lux-text);
}

body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-primary,
body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-primary {
  background: #1e3a8a;
  border-color: #1e3a8a;
  color: #fff;
}

body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-primary:hover,
body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-primary:focus,
body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-primary:hover,
body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-primary:focus {
  background: #172554;
  border-color: #172554;
  color: #fff;
}

body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary,
body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary {
  background: var(--lux-surface);
  border-color: color-mix(in srgb, #1e3a8a 45%, var(--lux-line));
  color: #1e3a8a;
}

body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary:hover,
body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary:focus,
body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary:hover,
body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary:focus {
  background: color-mix(in srgb, #1e3a8a 10%, var(--lux-surface));
  border-color: #1e3a8a;
  color: #172554;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary,
html[data-ui-mode="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary {
  color: #93c5fd;
  border-color: color-mix(in srgb, #60a5fa 45%, var(--lux-line));
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary:hover,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .btn.mk-btn-secondary:hover,
html[data-ui-mode="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary:hover,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="auction"] .ab-action-card .mk-btn-secondary:hover {
  color: #fff;
  background: color-mix(in srgb, #1e3a8a 35%, var(--lux-surface));
}

/* Help center — full Lux portal styles (no premium app.css) */
body.lux-body[data-lux-page="content"] .lux-main,
.lux-main:has(.lux-portal--help) {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.lux-portal--help.lux-section {
  width: min(1200px, calc(100% - 2rem));
}

.lux-portal--help .pf-portal {
  --pf-c-surface: var(--lux-surface);
  --pf-c-surface-2: color-mix(in srgb, var(--lux-bg) 88%, var(--lux-accent) 12%);
  --pf-c-text: var(--lux-text);
  --pf-c-muted: var(--lux-muted);
  --pf-c-primary: var(--lux-accent);
  --pf-c-border: var(--lux-line);
  color: var(--lux-text);
  padding-bottom: 0.5rem;
}

html[data-ui-mode="dark"] .lux-portal--help .pf-portal,
html[data-bs-theme="dark"] .lux-portal--help .pf-portal {
  --pf-c-surface: #111827;
  --pf-c-surface-2: #0d1524;
  --pf-c-text: #f1f5f9;
  --pf-c-muted: #94a3b8;
  --pf-c-primary: #60a5fa;
  --pf-c-border: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

.lux-portal--help .pf-portal-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.lux-portal--help .pf-portal-hero--help {
  background:
    radial-gradient(circle at 88% 18%, rgba(96, 165, 250, 0.35), transparent 42%),
    linear-gradient(135deg, #0f3460 0%, #1e3a8a 55%, #2563eb 100%);
  overflow: visible;
}

.lux-portal--help .pf-portal-hero__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.lux-portal--help .pf-portal-hero__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.55rem;
}

.lux-portal--help .pf-portal-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.lux-portal--help .pf-portal-hero__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

.lux-portal--help .pf-portal-hero__lead {
  margin: 0.65rem 0 0;
  max-width: 52ch;
  font-size: 1.02rem;
  opacity: 0.9;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.lux-portal--help .pf-portal-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lux-portal--help .pf-portal-stat {
  min-width: 5.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.lux-portal--help .pf-portal-stat__val {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.lux-portal--help .pf-portal-stat__lbl {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.lux-portal--help .pf-portal-hero__search {
  margin-top: clamp(1.25rem, 3vw, 1.85rem);
  padding-top: clamp(1.25rem, 3vw, 1.85rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lux-portal--help .pf-help-search {
  position: relative;
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
}

.lux-portal--help .pf-help-search__hint {
  margin: 0 0 0.8rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.lux-portal--help .pf-help-search__bar {
  display: flex;
  align-items: stretch;
  min-height: 3.45rem;
  padding: 0.32rem 0.38rem 0.32rem 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 20, 48, 0.28);
}

.lux-portal--help .pf-help-search__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  color: #64748b;
  flex-shrink: 0;
}

.lux-portal--help .pf-help-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 1rem;
  color: #0f172a;
  outline: none;
}

.lux-portal--help .pf-help-search__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-weight: 700;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
}

.lux-portal--help .pf-help-search__submit:hover {
  background: #1d4ed8;
}

.lux-portal--help .pf-help-search__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 20;
  border-radius: 16px;
  background: var(--lux-surface);
  border: 1px solid var(--lux-line);
  box-shadow: var(--lux-shadow-hover);
  overflow: hidden;
}

.lux-portal--help .pf-help-search__hit {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--lux-text);
  text-decoration: none;
  border-bottom: 1px solid var(--lux-line);
}

.lux-portal--help .pf-help-search__hit:hover,
.lux-portal--help .pf-help-search__hit.is-active {
  background: color-mix(in srgb, var(--lux-accent) 10%, var(--lux-surface));
}

html[data-ui-mode="dark"] .lux-portal--help .pf-help-search__panel,
html[data-bs-theme="dark"] .lux-portal--help .pf-help-search__panel {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

html[data-ui-mode="dark"] .lux-portal--help .pf-help-search__hit,
html[data-bs-theme="dark"] .lux-portal--help .pf-help-search__hit {
  color: #f1f5f9;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lux-portal--help .pf-portal-body {
  padding-bottom: 2rem;
}

.lux-portal--help .pf-account-panel {
  border: 1px solid var(--pf-c-border);
  border-radius: 16px;
  background: var(--pf-c-surface);
  box-shadow: var(--lux-shadow);
}

html[data-ui-mode="dark"] .lux-portal--help .pf-account-panel,
html[data-bs-theme="dark"] .lux-portal--help .pf-account-panel {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.lux-portal--help .pf-account-panel-body {
  padding: clamp(0.85rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: var(--pf-c-text);
}

.lux-portal--help .pf-portal-nav {
  position: sticky;
  top: var(--lux-sticky-below-chrome, calc(34px + 72px + 0.85rem));
  z-index: 40;
  align-self: start;
}

.lux-portal--help .pf-portal-nav__label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pf-c-muted);
}

.lux-portal--help .pf-portal-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--pf-c-muted);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.lux-portal--help .pf-portal-nav__link:hover,
.lux-portal--help .pf-portal-nav__link.is-active {
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
  color: var(--lux-accent);
}

html[data-ui-mode="dark"] .lux-portal--help .pf-portal-nav__link:hover,
html[data-ui-mode="dark"] .lux-portal--help .pf-portal-nav__link.is-active,
html[data-bs-theme="dark"] .lux-portal--help .pf-portal-nav__link:hover,
html[data-bs-theme="dark"] .lux-portal--help .pf-portal-nav__link.is-active {
  background: rgba(96, 165, 250, 0.12);
  color: #93c5fd;
}

.lux-portal--help .pf-portal-nav__count {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pf-c-muted);
}

.lux-portal--help .pf-faq-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--pf-c-border);
}

.lux-portal--help .pf-faq-block__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pf-c-text);
}

.lux-portal--help .pf-portal-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(96, 165, 250, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.lux-portal--help .pf-help-topic-block + .pf-help-topic-block {
  margin-top: 1rem;
}

.lux-portal--help .pf-help-topic-list__item + .pf-help-topic-list__item {
  border-top: 1px solid var(--pf-c-border);
}

.lux-portal--help .pf-help-topic-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.15rem;
  color: var(--pf-c-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lux-portal--help .pf-help-topic-list__link:hover {
  color: var(--lux-accent);
}

html[data-ui-mode="dark"] .lux-portal--help .pf-help-topic-list__link:hover,
html[data-bs-theme="dark"] .lux-portal--help .pf-help-topic-list__link:hover {
  color: #93c5fd;
}

.lux-portal--help .pf-help-topic-list__title {
  font-weight: 600;
  color: inherit;
}

.lux-portal--help .pf-help-topic-list__meta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--lux-accent) 24%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 6%, var(--lux-surface));
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--lux-accent);
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lux-portal--help .pf-help-topic-list__link:hover .pf-help-topic-list__meta {
  border-color: color-mix(in srgb, var(--lux-accent) 40%, var(--lux-line));
  background: color-mix(in srgb, var(--lux-accent) 12%, var(--lux-surface));
}

.lux-portal--help .pf-help-contact__option {
  border: 1px solid var(--pf-c-border);
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
  background: var(--lux-surface);
  color: var(--lux-text);
  height: 100%;
  box-shadow: var(--lux-shadow);
}

.lux-portal--help .pf-help-contact__option strong {
  color: var(--lux-text);
  font-size: 0.98rem;
}

.lux-portal--help .pf-help-contact__option .text-secondary,
.lux-portal--help .pf-help-contact__option p.small {
  color: var(--lux-muted) !important;
  line-height: 1.45;
}

.lux-portal--help .pf-help-contact__option--chat {
  position: relative;
}

.lux-portal--help .pf-help-contact__option--chat .pf-help-contact__status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.lux-portal--help .pf-help-contact__icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: color-mix(in srgb, #ea580c 14%, var(--lux-surface));
  border: 1px solid color-mix(in srgb, #ea580c 28%, var(--lux-line));
  color: #ea580c;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

html[data-ui-mode="dark"] .lux-portal--help .pf-help-contact__option,
html[data-bs-theme="dark"] .lux-portal--help .pf-help-contact__option {
  background: var(--pf-c-surface-2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

html[data-ui-mode="dark"] .lux-portal--help .pf-help-contact__icon,
html[data-bs-theme="dark"] .lux-portal--help .pf-help-contact__icon {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.25);
  color: #93c5fd;
}

/* —— Auction vendor action buttons (Lux) —— */
body.lux-body[data-lux-page="auction"] .ab-expose-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--lux-muted, #64748b);
}

body.lux-body[data-lux-page="auction"] .ab-expose-stats--panel {
  margin: 0.15rem 0 0.65rem;
  padding: 0;
}

body.lux-body[data-lux-page="auction"] .ab-expose-stats strong {
  color: var(--lux-text, #0f172a);
  font-weight: 800;
}

body.lux-body[data-lux-page="auction"] .ab-expose-stats__sep {
  opacity: 0.5;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item {
  flex: initial;
  min-height: 4.6rem;
  padding: 0.75rem 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lux-text) !important;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  font-size: 1rem;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item--shop .ab-vendor-action-card__icon {
  background: color-mix(in srgb, #1e3a8a 12%, var(--lux-surface));
  color: #1e3a8a;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item--ask .ab-vendor-action-card__icon {
  background: color-mix(in srgb, #0ea5e9 12%, var(--lux-surface));
  color: #0284c7;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item--message .ab-vendor-action-card__icon {
  background: color-mix(in srgb, #ea580c 14%, var(--lux-surface));
  color: #ea580c;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item:hover,
body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--lux-shadow-hover);
  filter: none;
  text-decoration: none;
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item--shop:hover {
  border-color: color-mix(in srgb, #1e3a8a 35%, var(--lux-line));
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item--ask:hover {
  border-color: color-mix(in srgb, #0284c7 35%, var(--lux-line));
}

body.lux-body[data-lux-page="auction"] .ab-vendor-action-card--lux .ab-vendor-action-card__item--message:hover {
  border-color: color-mix(in srgb, #ea580c 35%, var(--lux-line));
}

.lux-portal--help .text-secondary {
  color: #94a3b8 !important;
}

.lux-portal--help .btn-primary {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.lux-portal--help .btn-outline-primary {
  color: #93c5fd;
  border-color: rgba(147, 197, 253, 0.45);
}

.lux-portal--help .btn-outline-primary:hover {
  background: rgba(96, 165, 250, 0.12);
  color: #f1f5f9;
}

body.lux-body[data-lux-page="categories"] .lux-main {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.lux-categories-page {
  width: min(1200px, calc(100% - 2rem));
  margin: clamp(0.75rem, 2vw, 1.5rem) auto 2rem;
  display: grid;
  gap: 1.25rem;
}

.lux-categories-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.45rem);
  border-radius: var(--lux-radius);
  border: 1px solid color-mix(in srgb, var(--lux-accent) 22%, var(--lux-line));
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--lux-accent) 18%, transparent), transparent 42%),
    linear-gradient(140deg, color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface)), var(--lux-surface));
  box-shadow: var(--lux-shadow);
}

.lux-categories-hero .lux-h1 {
  margin: 0.25rem 0 0.35rem;
}

.lux-categories-hero__stat {
  min-width: 122px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 82%, var(--lux-bg) 18%);
  text-align: center;
}

.lux-categories-hero__stat strong {
  display: block;
  color: var(--lux-accent);
  font-size: 1.7rem;
  line-height: 1;
}

.lux-categories-hero__stat span {
  display: block;
  margin-top: 0.2rem;
  color: var(--lux-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.lux-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lux-categories-card {
  overflow: hidden;
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lux-categories-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lux-shadow-hover);
}

.lux-categories-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: color-mix(in srgb, var(--lux-surface) 78%, var(--lux-accent) 22%);
}

.lux-categories-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.lux-categories-card:hover .lux-categories-card__media img {
  transform: scale(1.035);
}

.lux-categories-card__body {
  padding: 1rem;
}

.lux-categories-card__title {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 800;
}

.lux-categories-card__title a {
  color: var(--lux-text);
  text-decoration: none;
}

.lux-categories-card__title a:hover {
  color: var(--lux-accent);
}

.lux-categories-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lux-categories-card__links a,
.lux-categories-card__empty {
  margin: 0;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 86%, var(--lux-accent) 14%);
  color: var(--lux-muted);
  font-size: 0.76rem;
  line-height: 1.1;
  text-decoration: none;
}

.lux-categories-card__links a:hover {
  border-color: color-mix(in srgb, var(--lux-accent) 38%, var(--lux-line));
  color: var(--lux-accent);
}

.lux-categories-tree {
  margin-top: 0.25rem;
}

.lux-empty--catalog {
  grid-column: 1 / -1;
  padding: 2.5rem 1.5rem;
  border-radius: var(--lux-radius);
  border: 1px dashed var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 92%, var(--lux-accent) 8%);
  text-align: center;
}

@media (max-width: 991px) {
  .lux-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-categories-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .lux-categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .lux-portal--help .pf-portal-hero__inner {
    grid-template-columns: auto 1fr;
  }

  .lux-portal--help .pf-portal-hero__stats {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lux-portal--help .pf-portal-nav {
    position: static;
  }
}

/* —— Floating widget dock (help chat + accessibility) —— */
body.lux-body .lux-floating-widgets {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  z-index: 9998;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.75rem;
  justify-content: flex-end;
  pointer-events: none;
}

body.lux-body .lux-floating-widgets--a11y-right {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

body.lux-body .sf-wave--right-center .sf-wave__trigger {
  min-width: auto;
  height: 34px;
  padding: 0 0.65rem;
  font-size: 0.72rem;
  gap: 0.25rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
}

body.lux-body .sf-wave--right-center .sf-wave__panel {
  right: calc(100% + 0.65rem);
  left: auto;
  bottom: 50%;
  top: auto;
  transform: translateY(50%);
}

@media (max-width: 767px) {
  body.lux-body .lux-floating-widgets--a11y-right {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
  body.lux-body .sf-wave--right-center .sf-wave__panel {
    right: 0;
    bottom: calc(100% + 0.5rem);
    transform: none;
  }
}

body.lux-body .lux-floating-widgets:has(.pf-help-chat) {
  left: 1rem;
  right: 1rem;
  justify-content: space-between;
}

body.lux-body .lux-floating-widgets > * {
  pointer-events: auto;
}

/* —— Help live-chat widget (Lux dark) —— */
body.lux-body .pf-help-chat {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  max-width: none;
}

body.lux-body .lux-floating-widgets .sf-wave--lux {
  z-index: 1;
  align-items: flex-end;
}

body.lux-body .lux-floating-widgets .sf-wave--lux .sf-wave__panel {
  left: auto;
  right: 0;
}

@media (max-width: 899px) {
  body.lux-body .lux-floating-widgets .sf-wave--lux:not(.sf-wave--right-center) {
    align-items: flex-start;
  }

  body.lux-body .lux-floating-widgets .sf-wave--lux:not(.sf-wave--right-center) .sf-wave__panel {
    left: 0;
    right: auto;
  }
}

@media (max-width: 767px) {
  body.lux-body .lux-floating-widgets .sf-wave--lux {
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  body.lux-body .lux-floating-widgets.is-lux-scroll-up .sf-wave--lux {
    transform: translateY(calc(100% + 0.75rem));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.lux-body .sf-wave__trigger {
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    font-size: 0.65rem;
    gap: 0.18rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  }

  body.lux-body .sf-wave__trigger .bi {
    font-size: 0.9rem;
  }

  body.lux-body .sf-wave__score-label {
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;
  }

  .lux-footer--storefront .lux-footer__legal-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 879px) {
  body.lux-body[data-lux-page="category"] .lux-main {
    overflow-x: clip;
    min-width: 0;
  }

  body.lux-body[data-lux-page="category"] .lux-cat .lux-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

body.lux-body .pf-help-chat__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: #1e3a8a;
  border: 1px solid #1e3a8a;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

body.lux-body .pf-help-chat__panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  background: #0d1524;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  color: #e2e8f0;
}

body.lux-body .pf-help-chat__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 900px) {
  body.lux-body .pf-help-chat__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.65rem);
    width: min(360px, calc(100vw - 2rem));
    transform: translateY(8px);
  }

  body.lux-body .pf-help-chat__panel.is-open {
    transform: translateY(0);
  }
}

body.lux-body .pf-help-chat__panel .card-header {
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

body.lux-body .pf-help-chat__panel .form-control,
body.lux-body .pf-help-chat__panel .form-select {
  background: #0a101c;
  border-color: rgba(255, 255, 255, 0.14);
  color: #f1f5f9;
}

body.lux-body .pf-help-chat__panel .btn-primary {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

body.lux-body .pf-help-chat__panel .btn-close {
  filter: invert(1) grayscale(1);
}

body.lux-body .pf-help-chat-msg--user .pf-help-chat-msg__body {
  background: #1e3a8a;
  color: #fff;
}

body.lux-body .pf-help-chat-msg--staff .pf-help-chat-msg__body,
body.lux-body .pf-help-chat-msg--system .pf-help-chat-msg__body {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

body.lux-body .pf-help-chat__panel .card-body {
  background: #0d1524;
  color: #e2e8f0;
}

body.lux-body .pf-help-chat__setup,
body.lux-body .pf-help-chat__composer {
  background: #0a101c;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.lux-body .pf-help-chat__messages {
  background: #0a101c;
}

body.lux-body .pf-help-chat__panel .text-muted,
body.lux-body .pf-help-chat__panel .form-label,
body.lux-body .pf-help-chat-msg__time {
  color: #94a3b8 !important;
}

body.lux-body .pf-help-chat__panel .form-control::placeholder,
body.lux-body .pf-help-chat__panel textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

body.lux-body .pf-help-chat__panel .form-select option {
  background: #0d1524;
  color: #f1f5f9;
}

body.lux-body .pf-help-chat__panel input[type="file"].form-control {
  color: #cbd5e1;
  padding: 0.35rem 0.5rem;
}

body.lux-body .pf-help-chat__panel input[type="file"].form-control::file-selector-button {
  margin-right: 0.65rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #1e293b;
  color: #e2e8f0;
  cursor: pointer;
}

body.lux-body .pf-help-chat__panel input[type="file"].form-control::file-selector-button:hover {
  background: #334155;
}

body.lux-body .pf-help-chat-msg__attach a {
  color: #93c5fd;
}

/* —— Vendor dashboard hub (grouped, larger tiles) —— */
body.lux-body[data-lux-page="account"] .lux-vendor-quick {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__card:hover {
  border-color: rgba(147, 197, 253, 0.35);
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  transform: translateY(-1px);
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.18);
  color: var(--lux-accent);
  font-size: 1.25rem;
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary .lux-vendor-quick__icon {
  background: rgba(37, 99, 235, 0.12);
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__copy strong {
  color: var(--lux-text);
  font-size: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__copy span {
  color: var(--lux-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

body.lux-body[data-lux-page="account"] .lux-vendor-quick__arrow {
  color: var(--lux-muted);
  font-size: 0.9rem;
}

body.lux-body[data-lux-page="account"] .lux-account-grid--vendor {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.lux-body[data-lux-page="account"] .lux-hub-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

body.lux-body[data-lux-page="account"] .lux-hub-tile:hover {
  border-color: rgba(147, 197, 253, 0.28);
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  transform: translateY(-1px);
}

body.lux-body[data-lux-page="account"] .lux-hub-tile__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--lux-accent);
  font-size: 1.05rem;
  flex-shrink: 0;
}

body.lux-body[data-lux-page="account"] .lux-hub-tile__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

body.lux-body[data-lux-page="account"] .lux-hub-tile__copy strong {
  color: var(--lux-text);
  font-size: 0.95rem;
  font-weight: 600;
}

body.lux-body[data-lux-page="account"] .lux-hub-tile__copy span {
  color: var(--lux-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

body.lux-body[data-lux-page="account"] .lux-hub-tile__arrow {
  color: #475569;
  font-size: 0.85rem;
}

body.lux-body[data-lux-page="account"] .lux-kpi-row--vendor .lux-kpi-card {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
}

body.lux-body[data-lux-page="account"] .lux-kpi-row--vendor .lux-kpi-card strong {
  font-size: 1.35rem;
  color: var(--lux-text);
}

body.lux-body[data-lux-page="account"] .lux-panel--vendor-recent {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-account-hero__vendor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-account-hero__head {
  min-width: 0;
  flex: 1 1 auto;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-account-hero__title {
  margin-bottom: 0;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-account-hero__shop-name {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lux-muted);
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-account-hero__shop-name i {
  color: #1d4ed8;
  font-size: 1rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  padding: 0.85rem 1.05rem;
  min-width: min(100%, 240px);
  max-width: 280px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  transform: translateY(-1px);
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lux-accent);
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill__main {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill__name {
  color: var(--lux-text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill__cta {
  color: var(--lux-muted);
  font-size: 0.8rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill__icon {
  color: var(--lux-muted);
  font-size: 0.95rem;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(135deg, #fffbeb 0%, #f8fafc 100%);
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro .lux-vendor-plan-pill__eyebrow {
  color: #b45309;
}

body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
}

@media (max-width: 900px) {
  body.lux-body[data-lux-page="account"] .lux-vendor-quick {
    grid-template-columns: 1fr;
  }

  body.lux-body[data-lux-page="account"] .lux-account-grid--vendor {
    grid-template-columns: 1fr;
  }

  body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-account-hero__vendor-head {
    flex-direction: column;
    align-items: stretch;
  }

  body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill {
    max-width: none;
    width: 100%;
  }
}

/* —— Header cart + account menu —— */
.lux-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.15rem 0.6rem 0.15rem 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.lux-cart-link:hover {
  background: color-mix(in srgb, var(--lux-text) 6%, transparent);
  border-color: var(--lux-line);
}

.lux-cart-link__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.lux-cart-link__icon svg {
  width: 22px;
  height: 22px;
}

.lux-cart-link__icon .lux-badge.lux-badge--dot {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: #3b82f6;
  color: #fff;
  border: 0;
  outline: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

@media (min-width: 900px) {
  .lux-cart-link--has-copy .lux-cart-link__copy {
    display: inline-flex;
  }
}

.lux-cart-link__copy {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  min-width: 0;
}

.lux-cart-link__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-cart-link__price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lux-text);
  white-space: nowrap;
}

.lux-cart-link__price--muted {
  font-weight: 600;
  color: var(--lux-muted);
}

.lux-cart-menu {
  position: relative;
}

.lux-cart-menu__trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.lux-cart-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(22rem, 92vw);
  border-radius: var(--lux-radius-sm);
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 96%, transparent);
  backdrop-filter: var(--lux-blur);
  -webkit-backdrop-filter: var(--lux-blur);
  box-shadow: var(--lux-shadow-hover);
  z-index: 120;
  overflow: hidden;
}

.lux-cart-panel__head,
.lux-cart-panel__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--lux-line);
  font-size: 0.82rem;
}

.lux-cart-panel__foot {
  flex-direction: column;
  align-items: stretch;
  border-bottom: 0;
  border-top: 1px solid var(--lux-line);
  gap: 0.55rem;
}

.lux-cart-panel__count {
  color: var(--lux-muted);
  font-size: 0.75rem;
}

.lux-cart-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(18rem, 50vh);
  overflow: auto;
}

.lux-cart-panel__item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid color-mix(in srgb, var(--lux-line) 70%, transparent);
}

.lux-cart-panel__thumb {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.45rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--lux-line) 40%, transparent);
  flex-shrink: 0;
}

.lux-cart-panel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-cart-panel__thumb-fallback {
  color: var(--lux-muted);
  font-size: 1.1rem;
}

.lux-cart-panel__meta {
  min-width: 0;
}

.lux-cart-panel__title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lux-text);
  text-decoration: none;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lux-cart-panel__title:hover {
  color: var(--lux-accent);
}

.lux-cart-panel__sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.lux-cart-panel__qty {
  color: var(--lux-muted);
}

.lux-cart-panel__price {
  font-size: 0.8rem;
}

.lux-cart-panel__remove {
  margin: 0;
}

.lux-cart-panel__remove-btn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--lux-muted);
  cursor: pointer;
}

.lux-cart-panel__remove-btn:hover {
  color: #dc2626;
  background: color-mix(in srgb, #dc2626 10%, transparent);
}

.lux-cart-panel__more {
  margin: 0;
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  color: var(--lux-muted);
}

.lux-cart-panel__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.85rem;
}

.lux-account-menu {
  position: relative;
}

.lux-account-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}

@media (min-width: 992px) {
  .lux-account-menu:hover .lux-account-dropdown,
  .lux-account-menu.is-open .lux-account-dropdown {
    display: block;
  }
}

.lux-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.15rem 0.55rem 0.15rem 0.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.lux-account-trigger:hover,
.lux-account-menu.is-open .lux-account-trigger {
  background: color-mix(in srgb, var(--lux-text) 6%, transparent);
  border-color: var(--lux-line);
}

.lux-account-trigger__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--lux-text) 8%, transparent);
  border: 1px solid var(--lux-line);
}

.lux-account-trigger__avatar .sf-seller-avatar {
  width: 36px;
  height: 36px;
}

.lux-account-trigger__avatar .sf-seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-account-trigger__avatar .sf-seller-avatar {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.lux-account-trigger__avatar .sf-seller-avatar__initial,
.lux-account-trigger__avatar i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.lux-account-trigger__copy {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.lux-account-trigger__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--lux-muted);
  white-space: nowrap;
}

.lux-account-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 600;
  min-width: 240px;
  padding: 0.45rem;
  border-radius: 14px;
  border: 1px solid var(--lux-line);
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow-hover);
  display: none;
}

.lux-account-dropdown[hidden] {
  display: none !important;
}

.lux-account-menu.is-open .lux-account-dropdown,
.lux-account-menu:hover .lux-account-dropdown {
  display: block;
}

.lux-account-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.lux-account-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--lux-text);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s;
}

.lux-account-dropdown__link:hover {
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  color: var(--lux-text);
}

.lux-account-dropdown__link i {
  width: 1rem;
  text-align: center;
  color: var(--lux-muted);
}

.lux-account-dropdown__link--admin {
  color: var(--lux-accent);
}

.lux-account-dropdown__divider {
  height: 1px;
  margin: 0.25rem 0.35rem;
  background: var(--lux-line);
}

body.lux-body[data-lux-page="account"] .lux-account-hero__identity .sf-seller-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__identity .sf-seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

body.lux-body[data-lux-page="account"] .lux-account-hero__identity .sf-seller-avatar__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.35);
  color: var(--lux-text);
  font-weight: 700;
}

/* —— Profile layout —— */
.lux-profile {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.lux-profile__avatar-body {
  text-align: center;
}

.lux-profile__avatar-preview {
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}

.lux-profile__avatar-preview img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.lux-profile__avatar-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.35);
  color: #e2e8f0;
  font-size: 2rem;
  font-weight: 700;
}

.lux-profile__sections {
  display: grid;
  gap: 1rem;
}

.lux-actions--center {
  justify-content: center;
}

.lux-btn--sm {
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
}

@media (min-width: 900px) {
  .lux-account-trigger__copy {
    display: inline-flex;
  }
}

/* —— Reviews sentiment —— */
.lux-reviews-label {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.lux-reviews-label--positive {
  color: #166534;
  background: color-mix(in srgb, #22c55e 16%, var(--lux-surface));
  border-color: color-mix(in srgb, #22c55e 35%, var(--lux-line));
}

.lux-reviews-label--neutral {
  color: #475569;
  background: color-mix(in srgb, #94a3b8 18%, var(--lux-surface));
  border-color: color-mix(in srgb, #94a3b8 35%, var(--lux-line));
}

.lux-reviews-label--negative {
  color: #b91c1c;
  background: color-mix(in srgb, #ef4444 14%, var(--lux-surface));
  border-color: color-mix(in srgb, #ef4444 32%, var(--lux-line));
}

.lux-reviews-row--positive td:not(:first-child) {
  color: #15803d;
  font-weight: 700;
}

.lux-reviews-row--neutral td:not(:first-child) {
  color: #64748b;
  font-weight: 700;
}

.lux-reviews-row--negative td:not(:first-child) {
  color: #dc2626;
  font-weight: 700;
}

.lux-badge--review-positive {
  background: color-mix(in srgb, #22c55e 14%, var(--lux-surface));
  color: #15803d;
}

.lux-badge--review-neutral {
  background: color-mix(in srgb, #94a3b8 14%, var(--lux-surface));
  color: #475569;
}

.lux-badge--review-negative {
  background: color-mix(in srgb, #ef4444 14%, var(--lux-surface));
  color: #b91c1c;
}

/* —— Tickets table readability —— */
.lux-link--ticket,
body.lux-body[data-lux-page="account"] .lux-table a {
  color: var(--lux-accent);
  font-weight: 600;
  text-decoration: none;
}

.lux-link--ticket:hover,
body.lux-body[data-lux-page="account"] .lux-table a:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

.lux-badge--ticket-meta {
  background: rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

/* —— Mail inbox —— */
.lux-mail-list {
  border: 1px solid var(--lux-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lux-surface);
}

.lux-mail + .lux-mail {
  border-top: 1px solid var(--lux-line);
}

.lux-mail__head {
  width: 100%;
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 0.95rem 1.1rem;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--lux-text);
  cursor: pointer;
  font: inherit;
  transition: background 0.15s ease;
}

.lux-mail__head:hover,
.lux-mail.is-open .lux-mail__head {
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
}

.lux-mail__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lux-muted);
  white-space: nowrap;
}

.lux-mail__subject {
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--lux-text);
}

.lux-mail__chevron {
  color: var(--lux-muted);
  transition: transform 0.2s ease;
}

.lux-mail.is-open .lux-mail__chevron {
  transform: rotate(180deg);
}

.lux-mail__body {
  border-top: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-text) 2%, var(--lux-surface));
}

.lux-mail__content {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--lux-muted);
}

.lux-mail__content p:last-child {
  margin-bottom: 0;
}

.lux-mail__content--detail {
  padding: 0.75rem 0.85rem 1rem;
}

.lux-mail__preview {
  width: 100%;
  padding: 1.5rem 1.25rem 1.75rem;
  border-radius: 14px;
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #e8eef6;
  font-size: 1rem;
  line-height: 1.55;
  color: #334155;
}

.lux-mail__preview-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.lux-mail__preview-inner table[role="presentation"],
.lux-mail__preview-inner table.ab-email-wrap {
  width: 100% !important;
  max-width: 640px !important;
}

.lux-mail__preview-inner img {
  max-width: 100%;
  height: auto;
}

.lux-mail__preview-inner a {
  color: #2563eb;
}

.lux-empty--inbox {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.lux-empty--inbox i {
  font-size: 1.6rem;
  color: #64748b;
}

@media (max-width: 720px) {
  .lux-mail__head {
    grid-template-columns: 1fr auto;
  }

  .lux-mail__date {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .lux-auth-premium__grid {
    grid-template-columns: 1fr;
  }

  body.lux-body[data-lux-page="account"] .lux-account-hero__content {
    grid-template-columns: 1fr;
  }

  body.lux-body[data-lux-page="account"] .lux-account-hero__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .lux-profile {
    grid-template-columns: 1fr;
  }
}

/* —— Lux light theme: header, account menu, hub accents —— */
html[data-ui-mode="light"] .lux-chrome .lux-header--storefront,
html[data-bs-theme="light"] .lux-chrome .lux-header--storefront {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--lux-surface);
  box-shadow: 0 1px 0 var(--lux-line);
}

html[data-ui-mode="light"] .lux-header--storefront .lux-iconbtn,
html[data-bs-theme="light"] .lux-header--storefront .lux-iconbtn,
html[data-ui-mode="light"] .lux-header--storefront .lux-iconbtn svg,
html[data-bs-theme="light"] .lux-header--storefront .lux-iconbtn svg {
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-header--storefront .lux-iconbtn:hover,
html[data-bs-theme="light"] .lux-header--storefront .lux-iconbtn:hover {
  background: color-mix(in srgb, var(--lux-text) 6%, transparent);
}

html[data-ui-mode="light"] .lux-cart-link:hover,
html[data-bs-theme="light"] .lux-cart-link:hover,
html[data-ui-mode="light"] .lux-account-trigger:hover,
html[data-bs-theme="light"] .lux-account-trigger:hover,
html[data-ui-mode="light"] .lux-account-menu.is-open .lux-account-trigger,
html[data-bs-theme="light"] .lux-account-menu.is-open .lux-account-trigger {
  background: color-mix(in srgb, var(--lux-text) 6%, transparent);
  border-color: var(--lux-line);
}

html[data-ui-mode="light"] .lux-cart-link__label,
html[data-bs-theme="light"] .lux-cart-link__label {
  color: var(--lux-muted);
}

html[data-ui-mode="light"] .lux-cart-link__price,
html[data-bs-theme="light"] .lux-cart-link__price,
html[data-ui-mode="light"] .lux-cart-link__price--muted,
html[data-bs-theme="light"] .lux-cart-link__price--muted {
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-account-trigger__avatar,
html[data-bs-theme="light"] .lux-account-trigger__avatar {
  background: color-mix(in srgb, var(--lux-text) 8%, transparent);
  border: 1px solid var(--lux-line);
}

html[data-ui-mode="light"] .lux-account-trigger__avatar i,
html[data-bs-theme="light"] .lux-account-trigger__avatar i,
html[data-ui-mode="light"] .lux-account-trigger__avatar .sf-seller-avatar__initial,
html[data-bs-theme="light"] .lux-account-trigger__avatar .sf-seller-avatar__initial {
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-account-trigger__label,
html[data-bs-theme="light"] .lux-account-trigger__label {
  color: var(--lux-muted);
}

html[data-ui-mode="light"] .lux-account-dropdown,
html[data-bs-theme="light"] .lux-account-dropdown {
  background: var(--lux-surface);
  border-color: var(--lux-line);
  box-shadow: var(--lux-shadow-hover);
}

html[data-ui-mode="light"] .lux-account-dropdown__link,
html[data-bs-theme="light"] .lux-account-dropdown__link {
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-account-dropdown__link:hover,
html[data-bs-theme="light"] .lux-account-dropdown__link:hover {
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-account-dropdown__link i,
html[data-bs-theme="light"] .lux-account-dropdown__link i {
  color: var(--lux-muted);
}

html[data-ui-mode="light"] .lux-account-dropdown__link--admin,
html[data-bs-theme="light"] .lux-account-dropdown__link--admin {
  color: var(--lux-accent);
}

html[data-ui-mode="light"] .lux-account-dropdown__divider,
html[data-bs-theme="light"] .lux-account-dropdown__divider {
  background: var(--lux-line);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="auth"] .lux-field a,
html[data-bs-theme="light"] body.lux-body[data-lux-page="auth"] .lux-field a,
html[data-ui-mode="light"] body.lux-body[data-lux-page="auth"] .lux-auth__links a,
html[data-bs-theme="light"] body.lux-body[data-lux-page="auth"] .lux-auth__links a,
html[data-ui-mode="light"] body.lux-body[data-lux-page="auth"] .lux-muted a,
html[data-bs-theme="light"] body.lux-body[data-lux-page="auth"] .lux-muted a {
  color: var(--lux-accent);
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--premium,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--premium {
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 162, 39, 0.18), transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(26, 107, 74, 0.12), transparent 42%),
    linear-gradient(145deg, #121c2a 0%, #0f1726 100%);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-account-hero--premium,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-account-hero--premium {
  background:
    radial-gradient(circle at 92% 8%, rgba(30, 58, 138, 0.08), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border-color: var(--lux-line);
  box-shadow: var(--lux-shadow);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-account-hero__eyebrow,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-account-hero__eyebrow {
  color: var(--lux-accent);
}

html[data-ui-mode="light"] .lux-portal-hero--news,
html[data-bs-theme="light"] .lux-portal-hero--news,
html[data-ui-mode="light"] .lux-portal-hero--faq,
html[data-bs-theme="light"] .lux-portal-hero--faq {
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.1), transparent 42%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 55%, #e0e7ff 100%);
  border-color: var(--lux-line);
}

html[data-ui-mode="dark"] .lux-portal-hero--news,
html[data-bs-theme="dark"] .lux-portal-hero--news,
html[data-ui-mode="dark"] .lux-portal-hero--faq,
html[data-bs-theme="dark"] .lux-portal-hero--faq {
  background:
    radial-gradient(circle at 88% 18%, rgba(96, 165, 250, 0.22), transparent 42%),
    linear-gradient(135deg, #0f1726 0%, #1e293b 55%, #1e3a5f 100%);
}

/* —— Light theme: account/vendor hub elements that were hardcoded dark —— */
html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-table td,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-table td {
  color: var(--lux-text);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-btn--ghost,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-btn--ghost {
  color: var(--lux-text);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-list-toolbar__filter .lux-select,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-list-toolbar__filter .lux-select {
  background: var(--lux-surface);
  color: var(--lux-text);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-kpi-row--vendor .lux-kpi-card,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-kpi-row--vendor .lux-kpi-card {
  background: var(--lux-surface);
  border-color: var(--lux-line);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

html[data-ui-mode="light"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary .lux-vendor-quick__icon,
html[data-bs-theme="light"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary .lux-vendor-quick__icon {
  background: rgba(37, 99, 235, 0.12);
  color: var(--lux-accent);
}

html[data-ui-mode="dark"] .lux-notifications-premium,
html[data-bs-theme="dark"] .lux-notifications-premium {
  border-color: color-mix(in srgb, #fff 10%, transparent);
  background: linear-gradient(145deg, #121c2a 0%, #0d1524 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

html[data-ui-mode="dark"] .lux-notifications-premium__glow,
html[data-bs-theme="dark"] .lux-notifications-premium__glow {
  opacity: 1;
}

html[data-ui-mode="light"] .lux-mail-list,
html[data-bs-theme="light"] .lux-mail-list {
  border-color: var(--lux-line);
  background: var(--lux-surface);
}

html[data-ui-mode="light"] .lux-mail + .lux-mail,
html[data-bs-theme="light"] .lux-mail + .lux-mail {
  border-top-color: var(--lux-line);
}

html[data-ui-mode="light"] .lux-mail__head,
html[data-bs-theme="light"] .lux-mail__head {
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-mail__head:hover,
html[data-bs-theme="light"] .lux-mail__head:hover,
html[data-ui-mode="light"] .lux-mail.is-open .lux-mail__head,
html[data-bs-theme="light"] .lux-mail.is-open .lux-mail__head {
  background: color-mix(in srgb, var(--lux-accent) 8%, var(--lux-surface));
}

html[data-ui-mode="light"] .lux-mail__subject,
html[data-bs-theme="light"] .lux-mail__subject {
  color: var(--lux-text);
}

html[data-ui-mode="light"] .lux-mail__body,
html[data-bs-theme="light"] .lux-mail__body {
  border-top-color: var(--lux-line);
  background: color-mix(in srgb, var(--lux-text) 2%, var(--lux-surface));
}

html[data-ui-mode="light"] .lux-mail__content,
html[data-bs-theme="light"] .lux-mail__content {
  color: var(--lux-muted);
}

html[data-ui-mode="light"] .lux-notifications-premium__glow,
html[data-bs-theme="light"] .lux-notifications-premium__glow {
  opacity: 0.35;
}

/* —— Dark theme: restore account/vendor hub contrast —— */
html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-tile span,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-tile span {
  color: #b6c2d1;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-table td,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-table td {
  color: #e5edf7;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-btn--ghost,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-btn--ghost {
  color: #e5edf7;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-list-toolbar__filter .lux-select,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-list-toolbar__filter .lux-select {
  background: #0a101c;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-kpi-row--vendor .lux-kpi-card,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-kpi-row--vendor .lux-kpi-card {
  background: linear-gradient(180deg, #111b2e 0%, #0d1524 100%);
  box-shadow: none;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.55) 0%, #0d1524 100%);
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary .lux-vendor-quick__icon,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-vendor-quick__card--primary .lux-vendor-quick__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(13, 21, 36, 0.95) 100%);
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill:hover,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill:hover {
  border-color: rgba(147, 197, 253, 0.45);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.42) 0%, #152238 100%);
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.28) 0%, rgba(13, 21, 36, 0.95) 100%);
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro .lux-vendor-plan-pill__eyebrow,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro .lux-vendor-plan-pill__eyebrow {
  color: #fbbf24;
}

html[data-ui-mode="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro:hover,
html[data-bs-theme="dark"] body.lux-body[data-lux-page="account"] .lux-account-hero--vendor .lux-vendor-plan-pill--pro:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.35) 0%, #152238 100%);
}

html[data-ui-mode="dark"] .lux-mail-list,
html[data-bs-theme="dark"] .lux-mail-list {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0d1524;
}

html[data-ui-mode="dark"] .lux-mail + .lux-mail,
html[data-bs-theme="dark"] .lux-mail + .lux-mail {
  border-top-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-mail__head,
html[data-bs-theme="dark"] .lux-mail__head {
  color: #e2e8f0;
}

html[data-ui-mode="dark"] .lux-mail__head:hover,
html[data-bs-theme="dark"] .lux-mail__head:hover,
html[data-ui-mode="dark"] .lux-mail.is-open .lux-mail__head,
html[data-bs-theme="dark"] .lux-mail.is-open .lux-mail__head {
  background: rgba(59, 130, 246, 0.08);
}

html[data-ui-mode="dark"] .lux-mail__subject,
html[data-bs-theme="dark"] .lux-mail__subject {
  color: #f1f5f9;
}

html[data-ui-mode="dark"] .lux-mail__body,
html[data-bs-theme="dark"] .lux-mail__body {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

html[data-ui-mode="dark"] .lux-mail__content,
html[data-bs-theme="dark"] .lux-mail__content {
  color: #cbd5e1;
}

html[data-ui-mode="dark"] .lux-notifications-stat--blue .lux-notifications-stat__icon,
html[data-bs-theme="dark"] .lux-notifications-stat--blue .lux-notifications-stat__icon { color: #93c5fd; background: rgba(37, 99, 235, 0.18); }
html[data-ui-mode="dark"] .lux-notifications-stat--violet .lux-notifications-stat__icon,
html[data-bs-theme="dark"] .lux-notifications-stat--violet .lux-notifications-stat__icon { color: #c4b5fd; background: rgba(109, 40, 217, 0.2); }
html[data-ui-mode="dark"] .lux-notifications-stat--amber .lux-notifications-stat__icon,
html[data-bs-theme="dark"] .lux-notifications-stat--amber .lux-notifications-stat__icon { color: #fcd34d; background: rgba(217, 119, 6, 0.2); }
html[data-ui-mode="dark"] .lux-notifications-stat--emerald .lux-notifications-stat__icon,
html[data-bs-theme="dark"] .lux-notifications-stat--emerald .lux-notifications-stat__icon { color: #6ee7b7; background: rgba(5, 150, 105, 0.2); }
html[data-ui-mode="dark"] .lux-notifications-stat--gold .lux-notifications-stat__icon,
html[data-bs-theme="dark"] .lux-notifications-stat--gold .lux-notifications-stat__icon { color: #f5d67b; background: rgba(180, 134, 11, 0.22); }

html[data-ui-mode="dark"] .lux-notifications-premium__item-icon--message,
html[data-bs-theme="dark"] .lux-notifications-premium__item-icon--message { color: #93c5fd; background: rgba(37, 99, 235, 0.18); }
html[data-ui-mode="dark"] .lux-notifications-premium__item-icon--ticket,
html[data-bs-theme="dark"] .lux-notifications-premium__item-icon--ticket { color: #c4b5fd; background: rgba(109, 40, 217, 0.2); }
html[data-ui-mode="dark"] .lux-notifications-premium__item-icon--invoice,
html[data-bs-theme="dark"] .lux-notifications-premium__item-icon--invoice { color: #fcd34d; background: rgba(217, 119, 6, 0.2); }
html[data-ui-mode="dark"] .lux-notifications-premium__item-icon--transaction,
html[data-bs-theme="dark"] .lux-notifications-premium__item-icon--transaction { color: #6ee7b7; background: rgba(5, 150, 105, 0.2); }
html[data-ui-mode="dark"] .lux-notifications-premium__item-icon--auction_event,
html[data-bs-theme="dark"] .lux-notifications-premium__item-icon--auction_event { color: #f5d67b; background: rgba(180, 134, 11, 0.22); }

html[data-ui-mode="dark"] .lux-badge--review-positive,
html[data-bs-theme="dark"] .lux-badge--review-positive {
  background: color-mix(in srgb, #22c55e 18%, #0d1524);
  color: #4ade80;
}

html[data-ui-mode="dark"] .lux-badge--review-neutral,
html[data-bs-theme="dark"] .lux-badge--review-neutral {
  background: color-mix(in srgb, #94a3b8 18%, #0d1524);
  color: #cbd5e1;
}

html[data-ui-mode="dark"] .lux-badge--review-negative,
html[data-bs-theme="dark"] .lux-badge--review-negative {
  background: color-mix(in srgb, #ef4444 18%, #0d1524);
  color: #f87171;
}

@media (max-width: 720px) {
  .lux-notifications-premium__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-notifications-premium__head {
    flex-wrap: wrap;
  }
}

/* ── Account listing thumbnails ───────────────────────────────────────── */

.lux-account-card__layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lux-account-card__layout--table {
  align-items: center;
}

.lux-account-card__main {
  flex: 1 1 auto;
  min-width: 0;
}

.lux-listing-thumb {
  flex: 0 0 auto;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-decoration: none;
}

.lux-listing-thumb--sm {
  width: 56px;
  height: 56px;
  border-radius: 8px;
}

.lux-listing-thumb--grid {
  width: 100%;
  height: 100%;
  min-height: 108px;
  border-radius: inherit;
}

.lux-listing-thumb__img,
.lux-listing-thumb .media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lux-listing-thumb .media-no-image {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: none;
  border-radius: inherit;
}

.lux-table__thumb-col {
  width: 4.25rem;
}

.lux-table__thumb-cell {
  width: 4.25rem;
  vertical-align: middle;
}

body.lux-body[data-lux-page="account"] .lux-recent-auction .lux-listing-thumb {
  flex-shrink: 0;
}

body.lux-body[data-lux-page="account"] .lux-watchlist-card__media .media-image,
body.lux-body[data-lux-page="account"] .lux-watchlist-card__media .media-no-image,
body.lux-body[data-lux-page="account"] .lux-watchlist-card__media .lux-watchlist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html[data-ui-mode="dark"] .lux-listing-thumb,
html[data-bs-theme="dark"] .lux-listing-thumb {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* ── Orders list + detail (premium) ───────────────────────────────────── */

.lux-order-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lux-orders-panel .lux-panel__body {
  padding: 1rem 1.25rem 1.25rem;
}

.lux-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.lux-order-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lux-order-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.lux-order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.lux-order-card__id {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.lux-order-card__no {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1d4ed8;
  text-decoration: none;
}

.lux-order-card__no:hover {
  text-decoration: underline;
}

.lux-order-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.lux-order-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.lux-order-card__product {
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lux-order-card__product strong {
  color: #0f172a;
}

.lux-order-card__vendor,
.lux-order-card__buyer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #64748b;
}

.lux-order-card__amount {
  flex: 0 0 auto;
  text-align: right;
}

.lux-order-card__amount-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.lux-order-card__amount strong {
  font-size: 1.1rem;
  color: #0f172a;
}

.lux-order-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.lux-order-card__actions form {
  margin: 0;
}

.lux-empty--orders {
  text-align: center;
  padding: 2.5rem 1rem;
}

.lux-empty--orders i {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.lux-empty--orders p {
  margin: 0;
  color: #64748b;
}

.lux-bids-panel .lux-panel__body {
  padding: 1rem 1.25rem 1.25rem;
}

.lux-bids-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.lux-bid-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lux-bid-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.lux-bid-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.lux-bid-card__auction {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.lux-bid-card__title {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.lux-bid-card__title:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.lux-bid-card__body {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.lux-bid-card__amount-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.lux-bid-card__amount strong {
  font-size: 1.1rem;
  color: #0f172a;
}

.lux-bid-card__time time {
  font-size: 0.9rem;
  color: #334155;
}

.lux-bid-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.lux-bid-pill,
.lux-bid-pill.sf-bid-status {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 0.7em;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.lux-bid-pill.sf-bid-status--leading { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.lux-bid-pill.sf-bid-status--outbid { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.lux-bid-pill.sf-bid-status--withdrawn { background: #f1f5f9; color: #475569; border-color: #cbd5e1; }
.lux-bid-pill.sf-bid-status--active { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }
.lux-bid-pill.sf-bid-status--default { background: #f8fafc; color: #334155; border-color: #e2e8f0; }

.lux-empty--bids {
  text-align: center;
  padding: 2.5rem 1rem;
}

.lux-empty--bids i {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.lux-empty--bids p {
  margin: 0;
  color: #64748b;
}

html[data-ui-mode="dark"] .lux-bid-card,
html[data-bs-theme="dark"] .lux-bid-card {
  background: #0d1524;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-bid-card__title,
html[data-bs-theme="dark"] .lux-bid-card__title,
html[data-ui-mode="dark"] .lux-bid-card__amount strong,
html[data-bs-theme="dark"] .lux-bid-card__amount strong {
  color: #e2e8f0;
}

html[data-ui-mode="dark"] .lux-bid-card__actions,
html[data-bs-theme="dark"] .lux-bid-card__actions {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* ── Order detail (premium) ─────────────────────────────────────────────── */

.lux-flash--warn {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
}

.lux-order-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #f1f5f9 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.lux-order-hero__no {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  color: #1d4ed8;
}

.lux-order-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.lux-order-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.lux-order-progress__step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 0;
  min-width: 110px;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.lux-order-progress__step--done {
  color: #16a34a;
}

.lux-order-progress__step--active {
  color: #1d4ed8;
  background: #eff6ff;
}

.lux-order-progress__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #64748b;
}

.lux-order-progress__step--done .lux-order-progress__dot {
  background: #dcfce7;
  color: #16a34a;
}

.lux-order-progress__step--active .lux-order-progress__dot {
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.lux-order-progress__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-order-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 1.25rem;
  align-items: start;
}

.lux-order-detail__main,
.lux-order-detail__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.lux-order-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.lux-order-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.lux-order-kpi--amount .lux-order-kpi__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.lux-order-kpi__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.lux-order-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.35em 0.7em;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.lux-order-pill--default,
.lux-order-pill.sf-order-status--default { background: #f8fafc; color: #334155; border-color: #e2e8f0; }
.lux-order-pill.sf-order-status--new { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }
.lux-order-pill.sf-order-status--paid { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.lux-order-pill.sf-order-status--shipped { background: #cffafe; color: #155e75; border-color: #67e8f9; }
.lux-order-pill.sf-order-status--delivered { background: #e0e7ff; color: #3730a3; border-color: #a5b4fc; }
.lux-order-pill.sf-order-status--completed { background: #dcfce7; color: #166534; border-color: #86efac; }
.lux-order-pill.sf-order-status--cancel-requested { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.lux-order-pill.sf-order-status--cancelled { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.lux-order-pill.sf-order-status--refunded { background: #f1f5f9; color: #475569; border-color: #cbd5e1; }
.lux-order-pill.sf-payment-status--pending { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.lux-order-pill.sf-payment-status--paid { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.lux-order-pill.sf-payment-status--failed { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.lux-order-pill.sf-payment-status--refunded { background: #f1f5f9; color: #475569; border-color: #cbd5e1; }
.lux-order-pill.sf-payment-status--cancelled { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.lux-order-pill.sf-payment-status--default { background: #f8fafc; color: #334155; border-color: #e2e8f0; }
.lux-order-pill--escrow,
.lux-order-pill.text-bg-info { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }
.lux-order-pill.text-bg-success { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.lux-order-pill.text-bg-danger { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }

.lux-order-vendor {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
}

.lux-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.lux-order-actions form {
  margin: 0;
}

.lux-panel--premium {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.lux-panel--premium .lux-panel__head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.lux-panel--premium .lux-panel__head .lux-h2 {
  margin: 0;
  font-size: 1rem;
}

.lux-panel--premium .lux-table-wrap,
.lux-panel--premium .lux-order-side-form,
.lux-panel--premium .lux-order-review-form,
.lux-panel--premium > .lux-btn,
.lux-panel--premium > p {
  padding: 0 1.25rem;
}

.lux-panel--premium .lux-table-wrap {
  padding-bottom: 1rem;
}

.lux-panel--premium > .lux-btn,
.lux-panel--premium > p {
  padding-bottom: 1rem;
}

.lux-panel--premium > p:first-of-type {
  padding-top: 1rem;
}

.lux-table--premium {
  border-collapse: separate;
  border-spacing: 0;
}

.lux-table--premium thead th {
  background: #f1f5f9;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.lux-table--premium tbody tr:hover td {
  background: #f8fafc;
}

.lux-order-positions__title {
  font-weight: 600;
  color: #0f172a;
}

.lux-order-timeline {
  position: relative;
  padding: 1rem 1.25rem 1.25rem;
}

.lux-order-timeline::before {
  content: "";
  position: absolute;
  left: calc(1.25rem + 0.95rem);
  top: 1.35rem;
  bottom: 1.25rem;
  width: 2px;
  background: linear-gradient(180deg, #93c5fd 0%, #e2e8f0 100%);
  border-radius: 2px;
}

.lux-order-timeline__node {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1rem;
}

.lux-order-timeline__node:last-child {
  padding-bottom: 0;
}

.lux-order-timeline__dot {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #93c5fd;
  color: #1d4ed8;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
  z-index: 1;
}

.lux-order-timeline__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.lux-order-timeline__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.lux-order-timeline__meta strong {
  color: #0f172a;
  font-size: 0.88rem;
}

.lux-order-timeline__meta time {
  color: #64748b;
  font-size: 0.75rem;
  white-space: nowrap;
}

.lux-order-side-form,
.lux-order-review-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
}

.lux-order-review-form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lux-order-review-form__choices label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.lux-order-review-form__choices label:has(input:checked) {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #1d4ed8;
}

.lux-order-review-done {
  padding: 1rem 1.25rem;
  color: #f59e0b;
}

.lux-order-vendor-status {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.25rem 1.25rem;
}

.lux-order-vendor-status form {
  margin: 0;
}

.lux-btn--danger {
  color: #b91c1c;
  border-color: #fecaca;
}

.lux-btn--danger:hover {
  color: #991b1b;
  border-color: #fca5a5;
  background: #fef2f2;
}

html[data-ui-mode="dark"] .lux-order-hero,
html[data-bs-theme="dark"] .lux-order-hero {
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, #0d1524 60%, #111a28 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

html[data-ui-mode="dark"] .lux-order-hero__no,
html[data-bs-theme="dark"] .lux-order-hero__no {
  color: #93c5fd;
}

html[data-ui-mode="dark"] .lux-order-progress,
html[data-bs-theme="dark"] .lux-order-progress,
html[data-ui-mode="dark"] .lux-order-kpi,
html[data-bs-theme="dark"] .lux-order-kpi,
html[data-ui-mode="dark"] .lux-panel--premium,
html[data-bs-theme="dark"] .lux-panel--premium {
  background: #0d1524;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-order-progress__step--active,
html[data-bs-theme="dark"] .lux-order-progress__step--active {
  background: rgba(37, 99, 235, 0.15);
}

html[data-ui-mode="dark"] .lux-order-kpi--amount .lux-order-kpi__value,
html[data-bs-theme="dark"] .lux-order-kpi--amount .lux-order-kpi__value,
html[data-ui-mode="dark"] .lux-order-timeline__meta strong,
html[data-bs-theme="dark"] .lux-order-timeline__meta strong,
html[data-ui-mode="dark"] .lux-order-positions__title,
html[data-bs-theme="dark"] .lux-order-positions__title {
  color: #e2e8f0;
}

html[data-ui-mode="dark"] .lux-panel--premium .lux-panel__head,
html[data-bs-theme="dark"] .lux-panel--premium .lux-panel__head {
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-table--premium thead th,
html[data-bs-theme="dark"] .lux-table--premium thead th {
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}

html[data-ui-mode="dark"] .lux-table--premium tbody tr:hover td,
html[data-bs-theme="dark"] .lux-table--premium tbody tr:hover td {
  background: rgba(59, 130, 246, 0.06);
}

html[data-ui-mode="dark"] .lux-order-timeline__card,
html[data-bs-theme="dark"] .lux-order-timeline__card,
html[data-ui-mode="dark"] .lux-order-vendor,
html[data-bs-theme="dark"] .lux-order-vendor {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-order-timeline__dot,
html[data-bs-theme="dark"] .lux-order-timeline__dot {
  background: #0d1524;
  border-color: #3b82f6;
  color: #93c5fd;
}

html[data-ui-mode="dark"] .lux-order-card,
html[data-bs-theme="dark"] .lux-order-card {
  background: #0d1524;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-order-card__product strong,
html[data-bs-theme="dark"] .lux-order-card__product strong,
html[data-ui-mode="dark"] .lux-order-card__amount strong,
html[data-bs-theme="dark"] .lux-order-card__amount strong {
  color: #e2e8f0;
}

html[data-ui-mode="dark"] .lux-order-card__actions,
html[data-bs-theme="dark"] .lux-order-card__actions {
  border-top-color: rgba(255, 255, 255, 0.1);
}

html[data-ui-mode="dark"] .lux-order-card__no,
html[data-bs-theme="dark"] .lux-order-card__no {
  color: #93c5fd;
}

@media (max-width: 1100px) {
  .lux-order-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .lux-order-detail__aside {
    order: -1;
  }
}

@media (max-width: 640px) {
  .lux-order-hero {
    padding: 1rem 1.1rem;
  }

  .lux-order-progress__step {
    min-width: 100%;
  }

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

/* Marketplace verticals — premium */
body.lux-body[data-lux-page="marketplace"] .lux-main {
  padding-top: clamp(1.35rem, 2.75vw, 2.1rem);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(30, 58, 138, 0.08), transparent 55%),
    var(--lux-bg);
}

.lux-mkt-page--premium {
  padding: 0 clamp(0.75rem, 2.5vw, 1.25rem) 2.5rem;
  max-width: 1280px;
  margin-inline: auto;
  overflow-x: clip;
}

.lux-mkt-hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.1rem;
  padding: 1.5rem 1.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.22), transparent 42%),
    linear-gradient(135deg, #0b1220 0%, #152238 52%, #0f2744 100%);
  color: #f8fafc;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.lux-mkt-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.18), transparent 68%);
  pointer-events: none;
}

.lux-mkt-hero--re {
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.18), transparent 40%),
    linear-gradient(135deg, #0b1220 0%, #152238 52%, #12324a 100%);
}

.lux-mkt-hero--vehicle {
  background:
    radial-gradient(circle at 88% 18%, rgba(59, 130, 246, 0.22), transparent 40%),
    linear-gradient(135deg, #0b1220 0%, #1a2332 48%, #0b3b5c 100%);
}

.lux-mkt-hero__copy { position: relative; z-index: 1; }
.lux-mkt-hero__kicker { margin: 0 0 0.35rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #93c5fd; font-weight: 700; }
.lux-mkt-hero__title { margin: 0; font-size: clamp(1.75rem, 3.2vw, 2.35rem); letter-spacing: -0.03em; font-weight: 800; }
.lux-mkt-hero__lead { margin: 0.5rem 0 0; color: #cbd5e1; max-width: 42rem; font-size: 0.95rem; line-height: 1.5; }
.lux-mkt-hero__stats { position: relative; z-index: 1; display: flex; gap: 0.75rem; }
.lux-mkt-hero__stats div {
  min-width: 92px;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  backdrop-filter: blur(6px);
}
.lux-mkt-hero__stats strong { display: block; font-size: 1.25rem; font-weight: 800; }
.lux-mkt-hero__stats span { font-size: 0.72rem; color: #94a3b8; }

.lux-mkt-brands-bar {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 94%, var(--lux-bg));
  box-shadow: var(--lux-shadow);
}

.lux-mkt-brands-bar__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  color: var(--lux-muted);
}

.lux-mkt-brands-bar__head strong {
  font-size: 0.82rem;
  color: var(--lux-text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lux-mkt-brands {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.lux-mkt-brands--compact {
  flex-wrap: nowrap;
}

.lux-mkt-brands__chip {
  flex: 0 0 auto;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--lux-line) 85%, transparent);
  background: var(--lux-surface);
  color: var(--lux-text);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.lux-mkt-brands__chip.is-active,
.lux-mkt-brands__chip:hover {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
  transform: translateY(-1px);
}
.lux-mkt-layout,
.lux-mkt-layout--premium {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.lux-mkt-filters,
.lux-mkt-filters--premium {
  position: sticky;
  top: var(--lux-sticky-below-chrome);
  z-index: 40;
  align-self: start;
  width: 100%;
  max-width: 300px;
  max-height: none;
  overflow: visible;
  padding: 0.95rem 0.85rem;
  border-radius: 18px;
  border: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-surface) 96%, var(--lux-bg));
  backdrop-filter: blur(10px);
  box-shadow: var(--lux-shadow);
}
.lux-mkt-filters__title { font-size: 0.88rem; margin: 0 0 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.lux-mkt-filters__form { display: grid; gap: 0.55rem; }
.lux-mkt-filters__form .lux-field > span { font-size: 0.76rem; }
.lux-mkt-filters__form .lux-input,
.lux-mkt-filters__form .lux-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: 0.82rem;
  padding: 0.42rem 0.5rem;
}
.lux-mkt-filters__form .lux-btn { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
.lux-mkt-filters__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.lux-mkt-results__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #64748b;
}
.lux-mkt-results__filter {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 600;
}
.lux-mkt-grid,
.lux-mkt-grid--premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.15rem;
}

.lux-mkt-grid.lux-card-grid .lux-mkt-auction-card {
  height: 100%;
  border-radius: 18px;
}

.lux-mkt-auction-card .lux-auction-card__price {
  display: grid;
  gap: 0.1rem;
}

.lux-mkt-auction-card .lux-auction-card__price-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-mkt-auction-card .lux-auction-card__price-value {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lux-mkt-empty {
  padding: 3rem 1.25rem;
  border: 1px dashed color-mix(in srgb, var(--lux-line) 80%, transparent);
  border-radius: 18px;
  text-align: center;
  color: var(--lux-muted);
  background: color-mix(in srgb, var(--lux-surface) 88%, var(--lux-bg));
}

.lux-mkt-empty i {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.55rem;
  color: color-mix(in srgb, var(--lux-muted) 70%, transparent);
}

@media (max-width: 991px) {
  .lux-mkt-layout,
  .lux-mkt-layout--premium {
    display: block;
  }

  .lux-mkt-filters:not(.lux-mkt-filters--drawer),
  .lux-mkt-filters--premium:not(.lux-mkt-filters--drawer) {
    position: static;
    max-width: none;
  }
}

@media (max-width: 767px) {
  body.lux-body[data-lux-page="marketplace"] .lux-main {
    padding-top: 0.75rem;
  }

  .lux-mkt-page--premium {
    padding-inline: 0.7rem;
    padding-bottom: 1.5rem;
  }

  .lux-mkt-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.85rem 0.8rem;
    margin-bottom: 0.65rem;
    border-radius: 14px;
  }

  .lux-mkt-hero::after {
    width: 160px;
    height: 160px;
    inset: auto -18% -50% auto;
  }

  .lux-mkt-hero__kicker {
    font-size: 0.62rem;
    margin-bottom: 0.2rem;
  }

  .lux-mkt-hero__title {
    font-size: 1.28rem;
    line-height: 1.15;
  }

  .lux-mkt-hero__lead {
    margin-top: 0.3rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .lux-mkt-hero__stats {
    width: 100%;
    gap: 0.45rem;
  }

  .lux-mkt-hero__stats div {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
  }

  .lux-mkt-hero__stats strong {
    font-size: 0.95rem;
  }

  .lux-mkt-hero__stats span {
    font-size: 0.64rem;
  }

  .lux-mkt-brands-bar {
    padding: 0.6rem 0.7rem;
    margin-bottom: 0.65rem;
    border-radius: 12px;
  }

  .lux-mkt-brands-bar__head {
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
  }

  .lux-mkt-brands__chip {
    padding: 0.3rem 0.65rem;
    font-size: 0.74rem;
  }

  .lux-mkt-filters,
  .lux-mkt-filters--premium {
    padding: 0.7rem 0.65rem;
    border-radius: 14px;
  }

  .lux-mkt-filters__title {
    font-size: 0.78rem;
    margin-bottom: 0.55rem;
  }

  .lux-mkt-filters__form {
    gap: 0.45rem;
  }

  .lux-mkt-filters__form .lux-field > span {
    font-size: 0.7rem;
  }

  .lux-mkt-filters__form .lux-input,
  .lux-mkt-filters__form .lux-select {
    font-size: 0.78rem;
    padding: 0.38rem 0.45rem;
  }

  .lux-mkt-filters__form .lux-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.55rem;
    min-height: 2.35rem;
  }

  .lux-mkt-filters__row {
    gap: 0.35rem;
  }

  .lux-mkt-results__bar {
    font-size: 0.78rem;
    margin-bottom: 0.55rem;
  }

  .lux-mkt-grid,
  .lux-mkt-grid--premium {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
  }

  .lux-mkt-card-steiri {
    border-radius: 12px;
  }

  .lux-mkt-card-steiri__media {
    aspect-ratio: 16 / 10;
  }

  .lux-mkt-card-steiri__body {
    padding: 0.62rem 0.68rem 0.75rem;
    gap: 0.18rem;
  }

  .lux-mkt-card-steiri__dealer,
  .lux-mkt-card-steiri__category {
    font-size: 0.68rem;
  }

  .lux-mkt-card-steiri__title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
  }

  .lux-mkt-card-steiri__price {
    font-size: 0.98rem;
    margin-top: 0.1rem;
  }

  .lux-mkt-card-steiri__specs,
  .lux-mkt-card-steiri__loc {
    font-size: 0.68rem;
    gap: 0.25rem 0.4rem;
  }

  .lux-mkt-type-badge {
    font-size: 0.6rem;
    padding: 0.18rem 0.45rem;
  }

  .lux-mkt-empty {
    padding: 2rem 0.85rem;
    border-radius: 14px;
  }
}

/* Marketplace mobile filter drawer */
.lux-mkt-mobile-toolbar {
  display: none;
}

.lux-mkt-filters__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.lux-mkt-filters__drawer-head .lux-mkt-filters__title {
  margin: 0;
}

.lux-mkt-filters__close {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  background: var(--lux-surface);
  color: var(--lux-text);
  place-items: center;
  cursor: pointer;
}

.lux-mkt-filters-backdrop {
  display: none;
}

@media (max-width: 991px) {
  .lux-mkt-mobile-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
  }

  .lux-mkt-mobile-toolbar__btn {
    flex: 1 1 auto;
    min-height: 2.4rem;
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
    justify-content: center;
  }

  .lux-mkt-filters.lux-mkt-filters--drawer {
    position: fixed !important;
    inset: 0 auto 0 0;
    z-index: 1085;
    width: min(92vw, 360px);
    max-width: 100%;
    max-height: 100dvh;
    overflow-y: auto;
    margin: 0;
    padding: 1rem 0.85rem;
    border-radius: 0;
    top: 0 !important;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.22);
    pointer-events: none;
  }

  .lux-mkt-filters.lux-mkt-filters--drawer.is-open {
    pointer-events: auto;
  }

  .lux-mkt-filters.lux-mkt-filters--drawer.is-open {
    transform: translateX(0);
  }

  .lux-mkt-filters__close {
    display: grid;
    flex-shrink: 0;
  }

  .lux-mkt-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(15, 23, 42, 0.45);
  }

  body.lux-mkt-filters-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .lux-mkt-expose {
    padding-inline: 0.7rem;
    padding-bottom: 1.5rem;
    overflow-x: clip;
  }

  .lux-mkt-expose__back {
    margin-bottom: 0.5rem;
  }

  .lux-mkt-expose__back-link {
    font-size: 0.76rem;
  }

  .lux-mkt-expose__layout {
    gap: 0.75rem;
  }

  .lux-mkt-expose__head {
    margin-top: 0.65rem;
  }

  .lux-mkt-expose__title {
    font-size: 1.12rem;
    line-height: 1.22;
  }

  .lux-mkt-expose__location {
    margin-top: 0.3rem;
    font-size: 0.76rem;
  }

  .lux-mkt-expose__price {
    margin-top: 0.45rem;
  }

  .lux-mkt-expose__price-value {
    font-size: 1.15rem;
  }

  .lux-mkt-expose__price-badge {
    font-size: 0.62rem;
  }

  .lux-mkt-expose__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .lux-mkt-expose__highlight {
    padding: 0.5rem 0.45rem;
    border-radius: 10px;
  }

  .lux-mkt-expose__highlight i {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
  }

  .lux-mkt-expose__highlight strong {
    font-size: 0.78rem;
  }

  .lux-mkt-expose__highlight span {
    font-size: 0.6rem;
    margin-top: 0.1rem;
  }

  .lux-mkt-gallery--premium .lux-mkt-gallery__stage {
    min-height: 0;
    border-radius: 12px;
  }

  .lux-mkt-gallery--premium .lux-mkt-gallery__main-img {
    max-height: 220px;
  }

  .lux-mkt-gallery__nav {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  .lux-mkt-gallery__nav--prev { left: 0.45rem; }
  .lux-mkt-gallery__nav--next { right: 0.45rem; }

  .lux-mkt-gallery__counter {
    font-size: 0.64rem;
    right: 0.45rem;
    bottom: 0.45rem;
  }

  .lux-mkt-gallery--premium .lux-mkt-gallery__thumbs {
    margin-top: 0.5rem;
    gap: 0.35rem;
  }

  .lux-mkt-gallery--premium .lux-mkt-gallery__thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 48px;
    border-radius: 8px;
  }

  .lux-mkt-expose__section {
    margin-top: 0.9rem;
    padding-top: 0.75rem;
  }

  .lux-mkt-expose__section-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .lux-mkt-expose__desc {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .lux-mkt-expose__facts {
    grid-template-columns: 1fr;
  }

  .lux-mkt-expose__fact {
    padding: 0.45rem 0.55rem;
  }

  .lux-mkt-expose__fact dt,
  .lux-mkt-expose__fact dd {
    font-size: 0.78rem;
  }

  .lux-mkt-expose__panel {
    border-radius: 14px;
  }

  .lux-mkt-expose__cta .lux-btn {
    font-size: 0.82rem;
    padding: 0.5rem 0.65rem;
  }
}

.lux-mkt-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 1.25rem;
  align-items: start;
}
.lux-mkt-detail__price { font-size: 1.35rem; font-weight: 700; margin: 0.35rem 0 0; }
.lux-mkt-detail__location { color: #64748b; margin: 0.25rem 0 0; }
.lux-mkt-detail__actions { display: grid; gap: 0.5rem; margin-bottom: 1rem; }
.lux-mkt-gallery__main {
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.lux-mkt-gallery__main img,
.lux-mkt-gallery__video { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.lux-mkt-gallery__360 iframe { width: 100%; min-height: 360px; border: 0; }
.lux-mkt-gallery__thumbs { display: flex; gap: 0.5rem; margin-top: 0.65rem; flex-wrap: wrap; }
.lux-mkt-gallery__thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  width: 72px;
  height: 54px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}
.lux-mkt-gallery__thumb.is-active { border-color: #3b82f6; }
.lux-mkt-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
body.lux-body[data-lux-page="account"] .lux-main > .lux-account-page,
body.lux-body[data-lux-page="account"] .lux-account-page {
  width: min(760px, calc(100% - 2rem));
  margin-inline: auto;
}

.lux-account-page {
  display: grid;
  gap: 1rem;
}

.lux-mkt-form {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
}

.lux-error-page {
  width: min(520px, calc(100% - 2rem));
  margin: clamp(2rem, 6vw, 4rem) auto;
}

.lux-error-page__card {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.lux-error-page__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #1e3a5f;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.lux-offer-format__list { display: grid; gap: 0.65rem; }
.lux-offer-format__option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.lux-offer-format__option.is-selected {
  border-color: rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.06);
}
.lux-offer-format__option input { margin-top: 0.2rem; accent-color: #2563eb; }
.lux-offer-format__body { display: grid; gap: 0.2rem; }
.lux-offer-format__title-row,
.sf-format-option__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.lux-offer-format__title,
.sf-format-option__title {
  font-weight: 700;
  color: #0f172a;
}

.lux-offer-format__fee,
.sf-format-option__fee {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.lux-offer-format__help,
.sf-format-option__help {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.45;
}

.lux-rich-editor { display: grid; gap: 0.5rem; }
.lux-rich-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.lux-rich-editor__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.lux-rich-editor__btn:hover {
  border-color: rgba(22, 101, 52, 0.35);
  color: #166534;
}
.lux-rich-editor__visual {
  min-height: 180px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  line-height: 1.6;
  overflow: auto;
}
.lux-rich-editor__visual:focus {
  outline: 2px solid rgba(22, 101, 52, 0.35);
  outline-offset: 2px;
}
.lux-rich-editor__source summary {
  font-size: 0.78rem;
  color: #64748b;
  cursor: pointer;
}
.lux-rich-editor__textarea {
  margin-top: 0.45rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
}
.lux-mkt-media { display: grid; gap: 0.65rem; padding: 0.85rem; border: 1px dashed rgba(15, 23, 42, 0.14); border-radius: 12px; }
.lux-mkt-media__title { margin: 0; font-size: 0.95rem; }
.lux-mkt-media__list { display: flex; flex-wrap: wrap; gap: 0.5rem; min-height: 2.5rem; }
.lux-mkt-media__item { position: relative; width: 72px; height: 54px; border-radius: 8px; overflow: hidden; background: #f1f5f9; display: grid; place-items: center; }
.lux-mkt-media__item img { width: 100%; height: 100%; object-fit: cover; }
.lux-mkt-media__badge { font-size: 0.65rem; text-transform: uppercase; color: #64748b; }
.lux-mkt-media__remove { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border: 0; border-radius: 50%; background: rgba(15, 23, 42, 0.72); color: #fff; font-size: 0.75rem; line-height: 1; cursor: pointer; }
.lux-mkt-media__actions { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.lux-mkt-media__hint { margin: 0; font-size: 0.78rem; color: #64748b; }
.lux-mkt-price-history { margin: 0; padding-left: 1.1rem; }

.lux-mkt-filters__amenities {
  margin: 0;
  padding: 0;
  border: 0;
}
.lux-mkt-filters__amenities legend {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--lux-muted);
  margin-bottom: 0.35rem;
}
.lux-mkt-filters__checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  max-height: 9rem;
  overflow: auto;
  padding-right: 0.15rem;
}
.lux-mkt-filters__check {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.74rem;
  line-height: 1.25;
  color: var(--lux-text);
  cursor: pointer;
}
.lux-mkt-filters__check input { margin-top: 0.12rem; flex-shrink: 0; }

.lux-mkt-card-steiri {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--lux-line);
  border-radius: 14px;
  background: var(--lux-surface);
  overflow: hidden;
  box-shadow: var(--lux-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lux-mkt-card-steiri:hover {
  transform: translateY(-4px);
  box-shadow: var(--lux-shadow-hover);
}
.lux-mkt-card-steiri--highlight {
  border-color: rgba(201, 151, 0, 0.45);
  box-shadow: 0 8px 24px rgba(201, 151, 0, 0.12);
}
.lux-mkt-card-steiri__premium {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a7200;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lux-mkt-card-steiri__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.lux-mkt-card-steiri__media {
  position: relative;
  aspect-ratio: 4/3;
  background: #e2e8f0;
}
.lux-mkt-card-steiri__media img,
.lux-mkt-card-steiri__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 2rem;
}
.lux-mkt-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}
.lux-mkt-type-badge--sale {
  background: #1e3a8a;
  color: #fff;
}
.lux-mkt-type-badge--rent {
  background: #1d4ed8;
  color: #fff;
}
.lux-mkt-card-steiri__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.35rem 0.5rem;
}
.lux-mkt-card-steiri__title-row .lux-mkt-card-steiri__title {
  flex: 1 1 auto;
  min-width: 0;
}
.lux-mkt-list-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
}
.lux-mkt-card-steiri__body {
  position: relative;
  z-index: 3;
  padding: 0.8rem 0.85rem 0.95rem;
  display: grid;
  gap: 0.28rem;
  pointer-events: none;
}
.lux-mkt-card-steiri__body a { pointer-events: auto; color: inherit; text-decoration: none; }
.lux-mkt-card-steiri__dealer,
.lux-mkt-card-steiri__category {
  margin: 0;
  font-size: 0.72rem;
  color: var(--lux-muted);
}
.lux-mkt-card-steiri__title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.lux-mkt-card-steiri__price {
  margin: 0.15rem 0 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.02em;
}
.lux-mkt-card-steiri__specs {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  font-size: 0.76rem;
  color: var(--lux-muted);
}
.lux-mkt-card-steiri__specs span:not(:last-child)::after {
  content: "•";
  margin-left: 0.55rem;
  opacity: 0.55;
}
.lux-mkt-card-steiri__loc {
  margin: 0.1rem 0 0;
  font-size: 0.76rem;
  color: var(--lux-muted);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.lux-mkt-card-steiri__flag {
  font-size: 0.95rem;
  line-height: 1;
}

.lux-mkt-card-steiri__loc-sep {
  opacity: 0.55;
}

@media (max-width: 960px) {
  .lux-mkt-layout,
  .lux-mkt-detail__layout { grid-template-columns: 1fr; }
  .lux-mkt-filters { position: static; }
}

/* Marketplace exposé — premium STEIRI-style */
.lux-mkt-expose {
  max-width: 1180px;
  margin-inline: auto;
  padding: 0 clamp(0.75rem, 2.5vw, 1.25rem) 2.5rem;
  overflow-x: clip;
}

.lux-mkt-expose__back {
  margin-bottom: 0.85rem;
}

.lux-mkt-expose__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lux-muted);
  text-decoration: none;
}

.lux-mkt-expose__back-link:hover {
  color: var(--lux-text);
}

.lux-mkt-expose__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.5rem;
  align-items: start;
}

.lux-mkt-expose__head {
  position: relative;
  margin-top: 1.15rem;
}

.lux-mkt-expose__head-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 0.35rem;
}

.lux-mkt-expose__iconbtn {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  background: var(--lux-surface);
  color: #dc2626;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lux-mkt-expose__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.lux-mkt-expose__title-row .lux-mkt-type-badge {
  font-size: 0.72rem;
  padding: 0.28rem 0.7rem;
}
.lux-mkt-expose__title {
  margin: 0;
  padding-right: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
}

.lux-mkt-expose__location {
  margin: 0.45rem 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--lux-muted);
}

.lux-mkt-expose__flag { font-size: 1rem; line-height: 1; }
.lux-mkt-expose__loc-sep { opacity: 0.5; }

.lux-mkt-expose__price {
  margin: 0.65rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.lux-mkt-expose__price-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.03em;
}

.lux-mkt-expose__price-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1e3a8a;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, #1e3a8a 12%, transparent);
}

.lux-mkt-expose__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.lux-mkt-expose__highlight {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--lux-line);
  border-radius: 12px;
  background: var(--lux-surface);
  text-align: center;
}

.lux-mkt-expose__highlight i {
  display: block;
  font-size: 1.15rem;
  color: #1e3a8a;
  margin-bottom: 0.35rem;
}

.lux-mkt-expose__highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.lux-mkt-expose__highlight span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--lux-muted);
}

.lux-mkt-expose__section {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lux-line);
}

.lux-mkt-expose__section-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.lux-mkt-expose__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--lux-text);
}

.lux-mkt-expose__desc.is-collapsed {
  max-height: 6.5rem;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 55%, transparent);
}

.lux-mkt-expose__more {
  margin-top: 0.5rem;
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e3a8a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.lux-mkt-expose__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid var(--lux-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--lux-surface);
}

.lux-mkt-expose__fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--lux-line);
  font-size: 0.86rem;
}

.lux-mkt-expose__fact:nth-child(odd) {
  border-right: 1px solid var(--lux-line);
}

.lux-mkt-expose__fact dt {
  margin: 0;
  color: var(--lux-muted);
  font-weight: 500;
}

.lux-mkt-expose__fact dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.lux-mkt-expose__equipment {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lux-mkt-expose__equipment li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--lux-bg) 65%, var(--lux-surface));
  font-size: 0.8rem;
}

.lux-mkt-expose__equipment i {
  color: #2563eb;
  flex-shrink: 0;
}

.lux-mkt-expose__aside {
  position: sticky;
  top: var(--lux-sticky-below-chrome);
  z-index: 40;
  align-self: start;
}

.lux-mkt-expose__panel {
  border: 1px solid var(--lux-line);
  border-radius: 14px;
  background: var(--lux-surface);
  box-shadow: var(--lux-shadow);
  overflow: hidden;
}

.lux-mkt-expose__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--lux-line);
  background: color-mix(in srgb, var(--lux-bg) 40%, var(--lux-surface));
}

.lux-mkt-expose__toolbar-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lux-mkt-expose__tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid color-mix(in srgb, #0f3460 28%, var(--lux-line));
  border-radius: 10px;
  background: #fff;
  color: #0f3460;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lux-mkt-expose__tool--print {
  min-height: 2.2rem;
  padding: 0.38rem 0.75rem;
  white-space: nowrap;
}

.lux-mkt-expose__tool--icon {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  flex-shrink: 0;
  color: var(--lux-muted);
  border-color: var(--lux-line);
}

.lux-mkt-expose__tool--icon.is-active {
  color: #dc2626;
  border-color: color-mix(in srgb, #dc2626 35%, var(--lux-line));
  background: color-mix(in srgb, #dc2626 8%, #fff);
}

.lux-mkt-expose__tool:hover {
  border-color: #1e3a8a;
  background: color-mix(in srgb, #0f3460 6%, #fff);
}

.lux-mkt-expose__tool--icon:hover {
  color: #0f3460;
}

.lux-mkt-expose__seller,
.lux-mkt-expose__cta {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lux-mkt-expose__buybox {
  border: 1px solid var(--lux-line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--lux-bg) 50%, var(--lux-surface));
}

.lux-mkt-expose__seller {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--lux-line);
}

.lux-mkt-expose__seller-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lux-mkt-expose__seller-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.lux-mkt-expose__seller-logo--ph {
  display: grid;
  place-items: center;
  background: #e2e8f0;
  font-weight: 800;
  color: #475569;
}

.lux-mkt-expose__seller-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.lux-mkt-expose__seller-badge {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lux-muted);
}

.lux-mkt-expose__seller-stats {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--lux-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.lux-mkt-expose__seller-stats strong {
  color: var(--lux-text);
  font-weight: 800;
}

.lux-mkt-expose__stat-sep {
  opacity: 0.5;
}

.lux-mkt-rent {
  padding: 0 1rem 0.5rem;
  display: grid;
  gap: 0.65rem;
}

.lux-mkt-rent__total {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e3a8a;
}

.lux-mkt-rent__total span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lux-muted);
}

.lux-mkt-rent__hint {
  margin: 0;
  font-size: 0.72rem;
  color: var(--lux-muted);
}

.lux-mkt-rent__box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.lux-mkt-rent__box-title {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.lux-mkt-rent__lines {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.lux-mkt-rent__line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.lux-mkt-rent__line dt,
.lux-mkt-rent__line dd {
  margin: 0;
}

.lux-mkt-rent__line--total {
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px solid #dbe3ec;
  font-weight: 800;
  color: #1e3a8a;
}

.lux-mkt-rent__deposit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--lux-text);
  font-weight: 600;
}

.lux-mkt-rent__deposit-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lux-muted);
  cursor: help;
  position: relative;
}

.lux-mkt-rent__deposit-tip[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.4rem);
  transform: translateX(-50%);
  min-width: 11rem;
  max-width: 16rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
}

.lux-mkt-rent__deposit-tip[data-tip]:hover::after,
.lux-mkt-rent__deposit-tip[data-tip]:focus-visible::after {
  opacity: 1;
}

.lux-mkt-expose__more-listings-btn {
  font-size: 0.82rem;
}

.lux-sales-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.lux-sales-types__card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.1rem 0.85rem 0.75rem;
  border: 1px solid var(--lux-line);
  border-radius: 14px;
  background: var(--lux-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lux-sales-types__card:hover {
  border-color: color-mix(in srgb, var(--lux-line) 40%, var(--lux-text));
  box-shadow: var(--lux-shadow-hover);
}

.lux-sales-types__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.lux-sales-types__icon--buy { background: #dcfce7; color: #166534; }
.lux-sales-types__icon--auction { background: #dcfce7; color: #15803d; }
.lux-sales-types__icon--live { background: #ffedd5; color: #c2410c; }
.lux-sales-types__icon--re { background: #dbeafe; color: #1d4ed8; }
.lux-sales-types__icon--vehicles { background: #ede9fe; color: #6d28d9; }

.lux-sales-types__title {
  font-size: 0.92rem;
}

.lux-sales-types__sub {
  font-size: 0.72rem;
  color: var(--lux-muted);
  line-height: 1.35;
}

.lux-sales-types__chev {
  color: var(--lux-muted);
  font-size: 0.75rem;
}

html[data-ui-mode="dark"] .lux-home .lux-sales-types__card,
html[data-bs-theme="dark"] .lux-home .lux-sales-types__card {
  background: #121214;
  border-color: rgba(255, 255, 255, 0.07);
}

html[data-ui-mode="dark"] .lux-home .lux-sales-types__card:hover,
html[data-bs-theme="dark"] .lux-home .lux-sales-types__card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.lux-mkt-expose__cta {
  padding: 0.85rem 1rem 1rem;
  display: grid;
  gap: 0.5rem;
}

.lux-mkt-expose__panel .lux-mkt-rent {
  padding: 0;
  margin-bottom: 0.15rem;
}

.lux-mkt-expose__cta .lux-btn {
  justify-content: center;
  gap: 0.4rem;
}

.lux-mkt-expose__cta .lux-btn--mkt-primary {
  background: #0f3460;
  color: #fff;
  border: none;
  font-weight: 700;
}

.lux-mkt-expose__cta .lux-btn--mkt-primary:hover {
  background: #1e3a8a;
  color: #fff;
}

.lux-mkt-expose__buybox {
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.2rem;
}

.lux-mkt-expose__buybox-label {
  font-size: 0.75rem;
  color: var(--lux-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.lux-mkt-expose__buybox strong {
  font-size: 1.25rem;
  color: #1e3a8a;
}

.lux-mkt-expose__more-listings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lux-muted);
  text-decoration: none;
}

.lux-mkt-expose__more-listings:hover {
  color: var(--lux-text);
}

.lux-mkt-gallery--premium .lux-mkt-gallery__stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  min-height: 320px;
}

.lux-mkt-gallery--premium .lux-mkt-gallery__main-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.lux-mkt-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

.lux-mkt-gallery__nav--prev { left: 0.75rem; }
.lux-mkt-gallery__nav--next { right: 0.75rem; }

.lux-mkt-gallery__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.lux-mkt-gallery--premium .lux-mkt-gallery__thumbs {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
}

.lux-mkt-gallery--premium .lux-mkt-gallery__thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 66px;
  scroll-snap-align: start;
  border-radius: 10px;
}

.lux-mkt-gallery--premium .lux-mkt-gallery__thumb.is-active {
  border-color: #166534;
  box-shadow: 0 0 0 1px #166534;
}

.lux-mkt-gallery__view { display: none; }
.lux-mkt-gallery__view.is-active { display: block; }
.lux-mkt-gallery__overlays {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 2;
}
.lux-mkt-gallery__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.lux-mkt-gallery__chip.is-active {
  border-color: #166534;
  color: #166534;
}
.lux-mkt-gallery--premium .lux-mkt-gallery__stage { position: relative; }

.lux-mkt-phone-reveal.is-revealed,
.lux-mkt-phone-reveal__value a {
  font-weight: 700;
  color: #166534;
}

.lux-mkt-energy__label {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lux-muted);
}
.lux-mkt-energy__scale {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: 1rem;
}
.lux-mkt-energy__seg {
  position: relative;
  height: 1.35rem;
  border-radius: 3px;
}
.lux-mkt-energy__seg--aplus { background: #14532d; }
.lux-mkt-energy__seg--a { background: #166534; }
.lux-mkt-energy__seg--b { background: #65a30d; }
.lux-mkt-energy__seg--c { background: #84cc16; }
.lux-mkt-energy__seg--d { background: #facc15; }
.lux-mkt-energy__seg--e { background: #f59e0b; }
.lux-mkt-energy__seg--f { background: #f97316; }
.lux-mkt-energy__seg--g { background: #ef4444; }
.lux-mkt-energy__seg--h { background: #991b1b; }
.lux-mkt-energy__marker {
  position: absolute;
  top: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: #f59e0b;
  color: #111827;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}
.lux-mkt-energy__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.lux-mkt-energy__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.lux-mkt-energy__fact i {
  font-size: 1.1rem;
  color: #64748b;
  margin-top: 0.1rem;
}
.lux-mkt-energy__fact strong {
  display: block;
  font-size: 0.92rem;
}
.lux-mkt-energy__fact span {
  display: block;
  font-size: 0.76rem;
  color: var(--lux-muted);
}
.lux-mkt-energy__cert img,
.lux-mkt-floorplan__item img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.lux-mkt-floorplan__grid {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 991px) {
  .lux-mkt-expose__layout {
    grid-template-columns: 1fr;
  }

  .lux-mkt-expose__aside {
    position: static;
  }

  .lux-mkt-expose__facts {
    grid-template-columns: 1fr;
  }

  .lux-mkt-expose__fact:nth-child(odd) {
    border-right: 0;
  }
}

.lux-saved-search-list {
  display: grid;
  gap: 1rem;
}

.lux-saved-search-card {
  border: 1px solid color-mix(in srgb, var(--lux-line) 82%, transparent);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  background: color-mix(in srgb, var(--lux-surface) 92%, var(--lux-bg));
}

.lux-saved-search-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.lux-saved-search-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--lux-accent) 14%, transparent);
  color: var(--lux-accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.lux-saved-search-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
}

.lux-saved-search-card__filters {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.lux-saved-search-card__filters li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
}

.lux-saved-search-card__filter-label {
  color: var(--lux-muted);
  font-weight: 600;
}

.lux-saved-search-card__filter-value {
  color: var(--lux-text);
}

.lux-saved-search-card__meta {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
}

.lux-saved-search-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.lux-saved-search-card__delete-form {
  margin: 0;
}

.lux-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 0.85rem;
}
