:root {
  --font-heading: "Instrument Sans", "DM Sans", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --primary-color-1: #FFBF43;
  --text-heading-color: #222222;
  --body-color: #555855;
  --bg-white: #FFFFFF;
  --color-2: #F8F7F0;

  --neutral-1: #313131;
  --neutral-2: #282828;
  --neutral-3: #4B4A4A;
  --neutral-4: #CCCCCC;

  --border-soft: #EEEDE8;
  --border-medium: #CDD0CD;
  --border-strong: #474644;

  --bg: var(--color-2);
  --bg-strong: var(--border-soft);
  --ink: var(--text-heading-color);
  --muted: var(--body-color);
  --accent: var(--primary-color-1);
  --accent-dark: var(--neutral-1);
  --teal: var(--neutral-1);
  --card: var(--bg-white);
  --stroke: var(--border-medium);
  --shadow: 0 18px 36px rgba(34, 34, 34, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --navy: var(--text-heading-color);
  --navy-dark: var(--neutral-1);
  --steel: var(--border-soft);
  --container: 1200px;
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-white) 52%, var(--color-2) 100%);
  font-size: 15px;
  line-height: 1.45;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-heading-color);
}

.page {
  min-height: 100vh;
  padding: 0;
  position: relative;
}

@media (max-width: 1024px) {
  .page {
    padding: 0;
  }
}

.container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.page::before {
  content: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 8px 18px rgba(34, 34, 34, 0.08);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.topbar-inner.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(20px, 2.8vw, 44px);
  padding-right: clamp(20px, 2.8vw, 44px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  display: none;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  justify-content: center;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.user-pill {
  font-size: 12px;
  padding: 0 12px;
  height: 36px;
  border-radius: 999px;
  background: #EEEDE8;
  border: 1px solid var(--stroke);
  display: inline-flex;
  align-items: center;
}

.notif-wrapper {
  position: relative;
  z-index: 30;
}

.notif-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.notif-icon svg {
  width: 18px;
  height: 18px;
}

.notif-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(255, 191, 67, 0.28);
}

.notif-panel {
  position: absolute;
  top: 44px;
  right: 0;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}

.notif-panel.open {
  display: flex;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #ebe2d7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.notif-close {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px 18px;
  overflow-y: auto;
}

.notif-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e1d6c7;
  background: #fffaf4;
  font-size: 12px;
}

.notif-item.unread {
  border-color: rgba(224, 36, 36, 0.3);
  background: rgba(224, 36, 36, 0.05);
}

.notif-message {
  font-weight: 600;
  color: var(--navy);
}

.notif-meta {
  color: var(--muted);
  font-size: 11px;
}

.notif-link {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.notif-empty {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 640px) {
  .notif-panel {
    width: min(92vw, 360px);
    right: -6px;
  }
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.primary {
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(34, 34, 34, 0.2);
  min-height: 42px;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  font-size: 14px;
}

.primary:hover {
  background: var(--navy-dark);
}

.ghost {
  background: #ffffff;
  border: 1px solid #CDD0CD;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  min-height: 42px;
  letter-spacing: 0.01em;
  font-size: 14px;
}

.ghost.active {
  background: rgba(255, 191, 67, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.small {
  padding: 8px 14px;
  font-size: 12px;
}

.hidden {
  display: none !important;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

h3 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: 18px;
}

.hero-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 28px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(255, 191, 67, 0.28), transparent 70%);
}

.hero-card-top {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--stroke);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill.accent {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.pill.muted {
  background: #EEEDE8;
  color: var(--muted);
  border-color: transparent;
}

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

.mini-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.hero-card-footer {
  display: flex;
  gap: 12px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.auctions-section {
  margin-top: 24px;
}

.locked-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px dashed var(--stroke);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.locked-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.search-strip {
  background: #EEEDE8;
  padding: 10px 0;
  border-bottom: 1px solid #d4dee3;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.search-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 240px 160px;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #CDD0CD;
  background: #fff;
}

.search-bar input,
.search-bar select {
  border: none;
  border-right: 1px solid #dfd2c1;
  border-radius: 0;
  padding: 12px 14px;
  height: 48px;
  font-size: 16px;
}

.search-bar .primary {
  border-radius: 0;
  min-height: 48px;
  box-shadow: none;
  background: var(--navy);
}

.search-bar .primary:hover {
  background: var(--navy-dark);
}

.search-bar button {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-banner {
  background: linear-gradient(135deg, #f9f2e6 0%, #f1e6d6 56%, #eadfce 100%);
  padding: 56px 0 70px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(157, 132, 103, 0.18), transparent 38%),
    radial-gradient(circle at 86% 22%, rgba(175, 148, 116, 0.2), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(255, 191, 67, 0.14), transparent 34%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -70px;
  bottom: -120px;
  border-radius: 50%;
  border: 36px solid rgba(255, 191, 67, 0.16);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-filter-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 14px 32px rgba(34, 34, 34, 0.12);
  border: 1px solid #CDD0CD;
  overflow: hidden;
}

.hero-filter-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid #d4dee3;
  background: #EEEDE8;
}

.hero-filter-head h3 {
  margin: 0;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.25;
}

.hero-filter-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #555855;
}

.hero-filter-card .filter-form {
  padding: 18px 22px 20px;
}

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

.advanced-filters {
  margin-top: 12px;
}

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

.filter-grid label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #6b6052;
  font-weight: 700;
}

.filter-grid select,
.filter-grid input {
  border-radius: 8px;
  border: 1px solid #d8ccba;
  padding: 10px 12px;
  font-weight: 500;
  width: 100%;
  background: #fffcf7;
}

.filter-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.hero-more-link {
  background: transparent;
  border: none;
  color: #5d5043;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.hero-more-link:hover {
  color: var(--accent);
}

.hero-confidence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 18px;
}

.hero-confidence span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #2d4259;
  background: #f8efe2;
  border: 1px solid #dfd0bc;
}

.hero-confidence span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-story {
  color: var(--ink);
  max-width: 520px;
}

.hero-story h1 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  margin: 10px 0 16px;
}

.hero-story .lead {
  color: var(--muted);
  max-width: 480px;
}

.hero-story-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #425463;
  font-size: 14px;
}

.hero-story .eyebrow {
  color: #7a654f;
  text-shadow: none;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.hero-kpi {
  background: rgba(255, 250, 243, 0.85);
  border: 1px solid #deceb8;
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: none;
}

.hero-kpi strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--navy);
}

.hero-kpi span {
  font-size: 12px;
  color: var(--muted);
}

.hero-banner .ghost {
  color: var(--navy);
  border-color: #d7c8b3;
  background: #f9f1e6;
}

.hero-banner .ghost:hover {
  border-color: #cbb9a2;
  background: #f2e6d5;
}

.stats-band {
  background: #ece1d1;
  color: var(--navy);
  text-align: center;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #dac8b2;
  border-bottom: 1px solid #dac8b2;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.stats-band-inner strong {
  color: var(--navy-dark);
  margin-right: 6px;
}

.stats-band-inner {
  text-align: center;
}

.stats-ticker {
  width: 100%;
  overflow: hidden;
}

.stats-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker-left 26s linear infinite;
}

@keyframes ticker-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.stats-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 28px;
  white-space: nowrap;
  position: relative;
}

.stats-item::after {
  content: "•";
  position: absolute;
  right: -4px;
  color: rgba(77, 62, 45, 0.32);
}

.category-strip {
  text-align: center;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 8px var(--pad) 0;
}

.category-strip h2 {
  margin-bottom: 24px;
  font-size: 40px;
  color: var(--navy);
  line-height: 1.08;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.category-item {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #ded2c0;
  font-weight: 600;
  text-align: left;
  min-height: 0;
  line-height: 1.3;
  box-shadow: 0 8px 18px rgba(58, 44, 28, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--navy);
  text-decoration: none;
}

.category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(58, 44, 28, 0.12);
  border-color: #d1c0aa;
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f3e8d8;
  color: var(--navy);
  flex: 0 0 auto;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits {
  background: #f0e6d7;
  padding: 36px;
  border-radius: 0;
  border: 1px solid #decfbb;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.benefit-card {
  background: #fff;
  padding: 20px;
  border-radius: 0;
  border: 1px solid #ded1bf;
  min-height: 170px;
  display: grid;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(54, 40, 23, 0.07);
}

.benefit-card h4 {
  font-size: 20px;
  margin: 0;
}

.numbers-band {
  background: #e9decd;
  color: var(--navy);
  padding: 42px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid #d8c6ad;
  border-bottom: 1px solid #d8c6ad;
}

.numbers-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.numbers-inner strong {
  font-size: 46px;
  display: block;
  margin: 8px 0 6px;
  color: var(--navy-dark);
}

.numbers-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a6852;
  font-weight: 700;
}

.numbers-desc {
  color: var(--muted);
  font-size: 15px;
}

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

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

.quick-card {
  background: #fff;
  border: 1px solid #dfd2c0;
  border-radius: 0;
  padding: 26px 24px;
  box-shadow: 0 8px 22px rgba(56, 42, 25, 0.08);
  display: grid;
  gap: 8px;
}

.quick-card h3 {
  font-size: 36px;
  color: var(--navy);
}

.quick-card a {
  text-decoration: none;
  color: #324760;
  font-weight: 600;
}

.quick-card a:hover {
  color: var(--accent);
}

.market-card {
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(9, 18, 41, 0.08);
}

.market-card .auction-image {
  height: 220px;
}

.market-card .auction-body {
  gap: 14px;
}

.market-card .auction-actions .primary {
  width: 100%;
}

.partners-section,
.testimonials-section {
  margin-top: 6px;
}

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

.partner-item {
  background: #fff;
  border: 1px solid #ded1bf;
  min-height: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374a61;
  border-radius: 0;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #ded1bf;
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(9, 17, 37, 0.06);
}

.testimonial-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 8px;
}

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

.filter {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
}

.filter.vertical {
  flex-direction: column;
  align-items: stretch;
}

.filter.vertical label {
  width: 100%;
}

.filter.vertical .filter-actions {
  justify-content: space-between;
}

.filter-form .filter-footer {
  margin-top: 18px;
}

select,
input,
textarea {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  background: #fffdfa;
  font-size: 14px;
}

.auctions-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.auctions-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}

.sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 20px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.sidebar-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.auctions-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auction-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auction-row {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.promo-row {
  border-color: rgba(224, 36, 36, 0.2);
  box-shadow: 0 16px 30px rgba(224, 36, 36, 0.12);
}

.auction-row-image {
  background-size: cover;
  background-position: center;
  min-height: 180px;
}

.auction-row-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.auction-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.auction-row-title h3 {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.auction-row-title .pill {
  display: inline-flex;
  align-items: center;
}

.auction-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4eadc;
  color: var(--navy);
  font-weight: 600;
  font-size: 11px;
}

.auction-row-price {
  text-align: right;
  min-width: 160px;
}

.auction-row-price strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.auction-row-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.auction-row-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #ebe2d7;
  padding-top: 12px;
  margin-top: auto;
}

.auction-row-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.auction-row-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.auction-row-specs strong {
  color: var(--navy);
}

.auction-row .auction-actions {
  margin-top: 0;
}

.auction-row .auction-actions form {
  margin: 0;
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
  gap: 24px;
  justify-content: center;
}

.auction-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.filter-overview {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: -8px 0 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: #32465e;
  background: #f4eadc;
  border: 1px solid #dfd2bf;
}

.filter-chip strong {
  color: var(--navy);
}

.auction-toolbar.bottom {
  justify-content: center;
  margin-top: 28px;
}

.auction-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  color: var(--navy);
  background: #fff;
  font-weight: 600;
  font-size: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pagination-page:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.pagination-page.active {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}

.pagination .disabled {
  pointer-events: none;
  opacity: 0.5;
}

.promo-grid {
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .auctions-layout {
    grid-template-columns: 1fr;
  }

  .auctions-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .auction-row {
    grid-template-columns: 1fr;
  }

  .auction-row-image {
    height: 220px;
  }

  .auction-row-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .auction-row-price {
    text-align: left;
  }
}

.auction-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.auction-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.image-a {
  background-image: linear-gradient(120deg, rgba(15, 139, 141, 0.7), rgba(244, 123, 59, 0.7)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='200'><rect width='400' height='200' fill='%23f7f1e8'/><path d='M0 160 L80 120 L140 150 L230 90 L310 140 L400 100 L400 200 L0 200 Z' fill='%23d2b79f'/><rect x='60' y='70' width='60' height='50' fill='%2397a9a8'/><rect x='130' y='80' width='90' height='70' fill='%23c7d8d7'/></svg>");
}

.image-b {
  background-image: linear-gradient(120deg, rgba(244, 123, 59, 0.8), rgba(28, 26, 22, 0.6)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='200'><rect width='400' height='200' fill='%23f4e6d6'/><circle cx='320' cy='60' r='40' fill='%23efc29a'/><rect x='40' y='80' width='120' height='90' fill='%23b98c6b'/><rect x='190' y='70' width='120' height='100' fill='%23d3b79a'/></svg>");
}

.image-c {
  background-image: linear-gradient(120deg, rgba(15, 139, 141, 0.9), rgba(30, 30, 30, 0.6)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='200'><rect width='400' height='200' fill='%23ede2d3'/><rect x='40' y='90' width='140' height='80' fill='%23c7c0b5'/><rect x='210' y='70' width='150' height='100' fill='%23a0b5b4'/><rect x='90' y='60' width='60' height='40' fill='%238c9f9f'/></svg>");
}

.auction-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.promo-card h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}

.auction-meta.mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 12px;
}

.auction-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  border-top: 1px solid #ebe2d7;
  padding-top: 12px;
  gap: 12px;
}

.auction-specs {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.auction-specs strong {
  color: var(--navy);
}

.auction-bids {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.auction-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.time-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.auction-price {
  text-align: right;
  justify-self: end;
  grid-column: -1;
  min-width: 140px;
}

.auction-price strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
  font-variant-numeric: tabular-nums;
}

.auction-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.auction-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  font-size: 12px;
}

.meta-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}

.meta-value {
  display: block;
  font-weight: 600;
  margin-top: 6px;
}

.auction-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.process {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.process-step {
  padding: 18px;
  border-radius: 16px;
  background: var(--bg-strong);
}

.step-number {
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
}

.about-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.about-list {
  display: grid;
  gap: 14px;
}

.about-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--stroke);
}

.about-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notification {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq {
  background: #f1e8dc;
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(83, 65, 46, 0.12), transparent 70%);
  pointer-events: none;
}

.faq-grid > div {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #dfd2c0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 8px;
  position: relative;
}

.faq-grid > div::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: 16px;
  right: 16px;
}

.dashboard {
  margin-top: 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: visible;
  border: none;
  gap: 24px;
}

.dashboard-shell {
  width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad);
}

.sidebar {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 16px;
  border: 1px solid #dfd2c0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.user-name {
  font-weight: 600;
}

.user-role {
  font-size: 12px;
  color: var(--muted);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-item {
  background: #f5ede2;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #dfd2c0;
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}

.nav-item.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.sidebar .sidebar-card {
  background: #f9f2e7;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #dfd2c0;
  font-size: 12px;
}

.sidebar .sidebar-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
  color: var(--muted);
}

.dashboard-main {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #dfd2c0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dfd2c0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.table {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ebe2d7;
  font-size: 13px;
}

.logs-table .table-row {
  grid-template-columns: 1.1fr 1fr 0.8fr 1.6fr;
}

.logs-table .table-row span {
  word-break: break-word;
}

.table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.table-row.header {
  font-weight: 700;
  border-bottom: 2px solid #dfd2c0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.status.warning {
  background: #ffe6d1;
  color: #a14d1f;
}

.status.live {
  background: #d7f3f3;
  color: #0b6f70;
}

.status.paid {
  background: #dff0d6;
  color: #2d6c1f;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

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

.form-actions {
  display: flex;
  gap: 12px;
  grid-column: 1 / -1;
}

.lead-card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 16px;
  background: #fff7ef;
}

.lead-card.paid {
  background: #f2f9f0;
}

.lead-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.lead-details.locked {
  opacity: 0.7;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(22, 18, 15, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  font-size: 22px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-buttons {
  display: flex;
  gap: 12px;
}

[data-role="admin"] .admin-panel {
  display: flex;
}

[data-role="admin"] .contractor-panel {
  display: none;
}

[data-role="contractor"] .admin-panel {
  display: none;
}

[data-role="contractor"] .contractor-panel {
  display: flex;
}

.brand {
  text-decoration: none;
  color: inherit;
}

.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.flash {
  background: #fff3df;
  border: 1px solid #f2d5b2;
  padding: 14px 18px;
  border-radius: 14px;
  margin: 8px auto 24px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  animation: float-in 0.6s ease;
  width: min(var(--container), 100%);
}

.flash.success {
  background: #e6f6e3;
  border-color: #c9e9c3;
}

.flash.error {
  background: #ffe7e7;
  border-color: #f2bcbc;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulse 0.6s ease;
}

.glow {
  animation: glow 1.2s ease;
}

.auction-card,
.panel,
.hero-card,
.stat-card,
.auth-card,
.notification {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auction-card:hover,
.panel:hover,
.hero-card:hover,
.stat-card:hover,
.auth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.primary,
.ghost {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary:active,
.ghost:active {
  transform: scale(0.98);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(244, 123, 59, 0.35);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 123, 59, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(244, 123, 59, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

.auth-wrapper {
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.auth-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--stroke);
}

.auth-card.wide {
  width: min(640px, 100%);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-footer {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.auth-footer a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  color: var(--accent-dark);
}

.auth-tip {
  font-size: 12px;
  color: var(--muted);
  background: #f8efe3;
  padding: 10px 12px;
  border-radius: 12px;
}

.auth-wrapper--login {
  min-height: calc(100vh - 86px);
  padding: 34px var(--pad) 56px;
  display: block;
  overflow: hidden;
}

.auth-wrapper--login::before,
.auth-wrapper--login::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.auth-wrapper--login::before {
  inset: 0;
  background:
    radial-gradient(720px 280px at -4% 12%, rgba(255, 191, 67, 0.14) 0%, transparent 72%),
    radial-gradient(620px 240px at 102% 84%, rgba(40, 40, 40, 0.1) 0%, transparent 70%);
}

.auth-wrapper--login::after {
  width: 280px;
  height: 280px;
  right: -82px;
  top: -118px;
  border-radius: 50%;
  border: 26px solid rgba(255, 191, 67, 0.16);
  transform: rotate(-11deg);
}

.auth-login-v3 {
  width: var(--ui-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.auth-login-v3__intro {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(130deg, rgba(34, 34, 34, 0.96) 0%, rgba(49, 49, 49, 0.96) 54%, rgba(40, 40, 40, 0.96) 100%),
    #222222;
  box-shadow: 0 18px 34px rgba(34, 34, 34, 0.24);
  padding: 28px;
  color: #fff;
  display: grid;
  gap: 16px;
}

.auth-login-v3__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.auth-login-v3__eyebrow--dark {
  color: #4f5b67;
}

.auth-login-v3__intro h1 {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.08;
  color: #fff;
}

.auth-login-v3__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.5;
  max-width: 700px;
}

.auth-login-v3__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.auth-login-v3__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.auth-login-v3__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #FFD37A;
  box-shadow: 0 0 0 5px rgba(45, 214, 219, 0.2);
}

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

.auth-login-v3__tile {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 13px;
  backdrop-filter: blur(3px);
  display: grid;
  gap: 5px;
}

.auth-login-v3__tile h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.auth-login-v3__tile p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.79);
}

.auth-card--login {
  width: auto;
  border-radius: 18px;
  padding: 24px;
  align-self: stretch;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
  border: 1px solid #d4dce3;
  box-shadow: 0 18px 34px rgba(34, 34, 34, 0.12);
}

.auth-card--login__head {
  display: grid;
  gap: 8px;
}

.auth-card--login h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.08;
  color: var(--ui-ink);
}

.auth-card--login__head p {
  margin: 0;
  color: var(--ui-text-muted);
  font-size: 16px;
}

.auth-form--login {
  margin-top: 6px;
}

.auth-field-v3 {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #4f5b66;
  min-width: 0;
}

.auth-field-v3 input {
  width: 100%;
  min-width: 0;
  height: 46px;
  border-radius: 11px;
  border: 1px solid #ccd6df;
  background: #fff;
  font-size: 15px;
}

.auth-field-v3 input:focus {
  outline: none;
  border-color: rgba(255, 191, 67, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.15);
}

.auth-submit-v3 {
  width: 100%;
  height: 46px;
  font-size: 15px;
}

.auth-wrapper--register::before {
  background:
    radial-gradient(760px 320px at 108% 10%, rgba(255, 191, 67, 0.14) 0%, transparent 72%),
    radial-gradient(620px 260px at -2% 88%, rgba(40, 40, 40, 0.1) 0%, transparent 70%);
}

.auth-wrapper--register::after {
  right: auto;
  left: -80px;
  top: auto;
  bottom: -110px;
  transform: rotate(16deg);
}

.auth-register-v3 {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
}

.auth-card--register {
  gap: 14px;
  overflow: hidden;
}

.auth-form--register {
  width: 100%;
  gap: 12px;
}

.auth-register-v3__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.auth-register-v3__grid > * {
  min-width: 0;
}

.auth-submit-v3--register {
  margin-top: 2px;
}

.auth-tip--register {
  margin-top: 4px;
}

.auth-footer--login {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2px;
}

.auth-tip--login {
  margin-top: 2px;
  background: #f0f6f8;
  border: 1px solid #d4e1e5;
  color: #456071;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.auth-demo-v3 {
  display: grid;
  gap: 6px;
}

.auth-demo-v3 span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 8px;
  border: 1px solid #d7e2e6;
  background: #fff;
  padding: 6px 9px;
  color: #354f60;
}

.auth-demo-v3 b {
  color: #223d4e;
}

@media (max-width: 1180px) {
  .auth-wrapper--login {
    padding-top: 24px;
  }

  .auth-login-v3 {
    grid-template-columns: 1fr;
  }

  .auth-register-v3 {
    grid-template-columns: 1fr;
  }

  .auth-card--login {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .auth-wrapper--login {
    padding-top: 20px;
    padding-bottom: 34px;
  }

  .auth-login-v3__intro,
  .auth-card--login {
    padding: 18px;
  }

  .auth-login-v3__intro h1 {
    font-size: 34px;
  }

  .auth-login-v3__lead {
    font-size: 16px;
  }

  .auth-login-v3__tiles {
    grid-template-columns: 1fr;
  }

  .auth-register-v3__grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  margin-top: 40px;
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #2b3645 0%, #212b37 100%);
  color: #fff;
  position: relative;
  z-index: 1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 24px;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.footer-brand p {
  color: #cdd2d7;
  font-size: 13px;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.footer-cols h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #d0d5dc;
}

.footer-meta {
  font-size: 12px;
  color: #bcc4cd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.auction-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.detail-page {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.detail-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 24px 0;
  background-color: #f1e7d8;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='144' height='84' viewBox='0 0 144 84'><defs><pattern id='h' width='72' height='84' patternUnits='userSpaceOnUse'><path d='M12 0 L36 0 L48 21 L36 42 L12 42 L0 21 Z' fill='none' stroke='%23d8cab3' stroke-width='1.05' stroke-opacity='0.6'/><path d='M12 0 L36 0 L48 21 L36 42 L12 42 L0 21 Z' fill='none' stroke='%23d8cab3' stroke-width='1.05' stroke-opacity='0.6' transform='translate(36 42)'/></pattern></defs><rect width='144' height='84' fill='url(%23h)'/></svg>");
  background-size: 144px 84px;
  background-repeat: repeat;
}

.detail-gallery {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.detail-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #dfd2c0;
}

.detail-gallery .detail-main {
  height: 360px;
  object-fit: contain;
  background: #f8f1e5;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, 96px);
  gap: 10px;
  justify-content: center;
}

.detail-thumb {
  height: 96px;
  width: 96px;
  object-fit: cover;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-thumb.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--accent);
}

.detail-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-nav {
  position: absolute;
  top: 160px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(34, 34, 34, 0.16);
}

.gallery-nav.prev {
  left: 80px;
}

.gallery-nav.next {
  right: 80px;
}

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

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.detail-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dfd2c0;
  padding: 20px;
  margin-bottom: 20px;
}

.info-card h3 {
  margin-top: 0;
}

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

.detail-right {
  position: sticky;
  top: 120px;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dfd2c0;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.price-time {
  font-size: 12px;
  color: var(--muted);
}

.price-main {
  margin-bottom: 16px;
}

.price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.price-value {
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
}

.price-sub {
  font-size: 12px;
  color: var(--muted);
}

.detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

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

.detail-actions form {
  margin: 0;
}

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

.detail-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.image-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #fff;
}

.detail-meta,
.detail-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--stroke);
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bid-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-message {
  font-size: 12px;
  color: var(--muted);
}

.form-message.success {
  color: #157f3d;
}

.form-message.error {
  color: #b42318;
}

.bid-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bid-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bid-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1e7da;
}

.status-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  background: #fff1dd;
}

.locked-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f5eee5;
  border: 1px dashed var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.auction-actions form {
  margin: 0;
}

.lead-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1024px) {
  .topbar-inner {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 18px;
  }
  .page {
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-simple {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar {
    position: static;
  }

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

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 24px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

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

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

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

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


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

  .detail-right {
    position: static;
  }

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

  .detail-gallery {
    padding: 0 28px;
  }

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

  .faq {
    padding: 28px;
  }
}

@media (min-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-tag {
    font-size: 11px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card-footer {
    flex-direction: column;
  }

  .filter {
    flex-direction: column;
  }

  .auction-meta {
    grid-template-columns: 1fr;
  }

  .auction-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .auction-price {
    justify-self: start;
    grid-column: auto;
    text-align: left;
    min-width: 0;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .locked-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-filter-card .filter-form {
    padding: 16px;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero-filter-head h3 {
    font-size: 20px;
  }

  .hero-confidence {
    padding: 0 16px 14px;
  }

  .quick-card h3 {
    font-size: 28px;
  }

  .partner-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .category-strip h2 {
    font-size: 30px;
  }

  .search-bar input,
  .search-bar select,
  .search-bar .primary {
    min-height: 44px;
    height: 44px;
  }

  .faq {
    padding: 20px;
  }

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

  .detail-gallery img {
    height: 200px;
  }

  .detail-gallery {
    padding: 0 20px;
  }

  .detail-gallery .detail-main {
    height: 240px;
  }

  .detail-thumb {
    height: 70px;
  }

  .gallery-nav {
    top: 110px;
  }

  .gallery-nav.prev {
    left: 20px;
  }

  .gallery-nav.next {
    right: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .detail-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .numbers-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-meta {
  }
}

/* =========================================================
   Rebuild V3/V4: palette synced to design tokens
   ========================================================= */

:root {
  --ui-ink: var(--text-heading-color);
  --ui-slate: var(--neutral-1);
  --ui-accent: var(--primary-color-1);
  --ui-accent-hover: #E5AC39;
  --ui-soft: var(--color-2);
  --ui-white: var(--bg-white);
  --ui-text-muted: var(--body-color);
  --ui-border: var(--border-medium);
  --ui-shadow: 0 18px 36px rgba(34, 34, 34, 0.12);
  --ui-radius: 16px;
  --ui-shell: min(1320px, calc(100% - 48px));
}

body {
  background: var(--ui-white);
  color: var(--ui-ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

.page {
  background: var(--ui-white);
}

.shell {
  width: var(--ui-shell);
  margin: 0 auto;
}

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

.site-header__inner {
  width: var(--ui-shell);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ui-ink);
  min-width: 0;
}

.site-logo__image {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(40vw, 280px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 8px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ui-ink);
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover {
  color: var(--ui-accent);
  border-color: var(--ui-accent);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-user {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ui-soft);
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

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

.btn:active {
  transform: translateY(0);
}

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

.btn--accent:hover,
.primary:hover {
  background: var(--ui-accent-hover);
  border-color: var(--ui-accent-hover);
}

.btn--outline,
.ghost {
  background: #fff;
  border-color: var(--ui-border);
  color: var(--ui-ink);
}

.btn--outline:hover,
.ghost:hover {
  border-color: var(--ui-accent);
  color: var(--ui-accent);
}

.btn--soft {
  background: var(--ui-soft);
  color: var(--ui-ink);
  border-color: var(--ui-soft);
}

.btn--sm,
.primary.small,
.ghost.small {
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
  border-radius: 8px;
}

.btn.disabled,
.btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.site-header .notif-wrapper {
  position: relative;
}

.site-header .notif-button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--ui-border);
  background: #fff;
  color: var(--ui-slate);
}

.site-header .notif-badge {
  background: var(--ui-accent);
  box-shadow: 0 8px 16px rgba(255, 191, 67, 0.28);
}

.site-header .notif-panel {
  border: 1px solid var(--ui-border);
  box-shadow: 0 18px 30px rgba(34, 34, 34, 0.16);
}

.flash {
  width: var(--ui-shell);
  margin-top: 12px;
  margin-bottom: 8px;
}

.home-v3,
.auctions-v3 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-v3 {
  background:
    radial-gradient(900px 320px at 100% 0%, rgba(255, 191, 67, 0.1) 0%, transparent 72%),
    radial-gradient(800px 260px at 0% 38%, rgba(40, 40, 40, 0.08) 0%, transparent 76%),
    #fff;
}

.hero-v3 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(950px 420px at 16% -18%, rgba(255, 191, 67, 0.34) 0%, transparent 64%),
    radial-gradient(680px 340px at 92% 8%, rgba(255, 255, 255, 0.12) 0%, transparent 68%),
    linear-gradient(128deg, var(--ui-ink) 0%, #282828 52%, var(--ui-slate) 100%);
  color: #fff;
  padding: 56px 0 44px;
  min-height: 760px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(124deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    repeating-linear-gradient(
      132deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 30px
    );
  opacity: 0.35;
}

.hero-v3::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 28px;
  width: clamp(160px, 18vw, 260px);
  height: clamp(140px, 16vw, 220px);
  border-radius: 28px;
  transform: rotate(-7deg);
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.42) 1.35px, transparent 1.35px);
  background-size: 16px 16px;
  opacity: 0.22;
}

.hero-v3__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
  min-height: 660px;
}

.hero-v3__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 12px;
}

.hero-v3__content h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 3.9vw, 52px);
  line-height: 1.08;
  font-family: var(--font-heading);
}

.hero-v3__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  font-size: 18px;
}

.hero-v3__list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-v3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-v3__search-card {
  position: relative;
  background: #fff;
  border: 1px solid #d3d9de;
  border-radius: 18px;
  color: var(--ui-ink);
  box-shadow: var(--ui-shadow);
  overflow: hidden;
}

.hero-v3__search-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ui-accent) 0%, #FFD37A 100%);
}

.hero-v3__search-head {
  background: var(--ui-soft);
  border-bottom: 1px solid #d9dde1;
  padding: 16px 18px;
}

.hero-v3__search-overline {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f5a66;
}

.hero-v3__search-head h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ui-ink);
}

.hero-v3__search-form {
  padding: 18px;
}

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

.hero-v3__search-grid--advanced {
  margin-top: 10px;
  max-height: 360px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  will-change: max-height, opacity, transform;
  transition:
    max-height 0.46s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.34s ease;
}

.hero-v3__search-grid--advanced.is-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  margin-top: 0;
  pointer-events: none;
}

.hero-v3__search-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5661;
}

.hero-v3__search-form input,
.hero-v3__search-form select,
.filter-form-v3 input,
.filter-form-v3 select {
  height: 42px;
  border: 1px solid var(--ui-border);
  background: #fff;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 15px;
  color: var(--ui-ink);
}

.hero-v3__search-form input::placeholder,
.filter-form-v3 input::placeholder {
  color: #95a0aa;
}

.hero-v3__search-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hero-v3__more {
  border: none;
  background: transparent;
  color: var(--ui-slate);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.home-section-v3 {
  position: relative;
  padding: 68px 0;
  background: #fff;
}

.home-section-v3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(40, 40, 40, 0.16) 18%,
    rgba(40, 40, 40, 0.16) 82%,
    transparent 100%
  );
}

.home-section-v3--soft {
  background:
    radial-gradient(740px 260px at -6% 50%, rgba(255, 191, 67, 0.1) 0%, transparent 74%),
    radial-gradient(680px 220px at 106% 18%, rgba(40, 40, 40, 0.08) 0%, transparent 72%),
    #f7f9fa;
}

.section-head-v3 {
  margin-bottom: 24px;
}

.section-head-v3 h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  color: var(--ui-ink);
  font-family: var(--font-heading);
}

.section-head-v3 p {
  margin: 10px 0 0;
  color: var(--ui-text-muted);
  font-size: 17px;
}

.section-head-v3--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

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

.category-card-v3 {
  background: #fff;
  border: 1px solid #d6dce1;
  border-radius: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 20px rgba(34, 34, 34, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-card-v3:hover {
  transform: translateY(-2px);
  border-color: var(--ui-accent);
  box-shadow: 0 14px 24px rgba(34, 34, 34, 0.1);
}

.category-card-v3__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #ced6dd;
  background: #f3f6f8;
  display: grid;
  place-items: center;
  color: #3f4a56;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.category-card-v3__icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card-v3:hover .category-card-v3__icon {
  background: #e8f8f9;
  border-color: rgba(255, 191, 67, 0.5);
  color: var(--ui-accent);
  transform: translateY(-1px);
}

.category-card-v3__copy {
  min-width: 0;
}

.category-card-v3 h3 {
  margin: 2px 0 0;
  color: var(--ui-ink);
  font-size: 21px;
}

.category-card-v3 p {
  margin: 8px 0 0;
  color: var(--ui-text-muted);
}

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

.auction-card-v3 {
  background: #fff;
  border: 1px solid #d4dae0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(34, 34, 34, 0.08);
}

.auction-card-v3__image {
  display: block;
  height: 210px;
  background-size: cover;
  background-position: center;
}

.auction-card-v3__body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.auction-card-v3__body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.auction-card-v3__body h3 a {
  color: var(--ui-ink);
  text-decoration: none;
}

.auction-card-v3__body h3 a:hover {
  color: var(--ui-accent);
}

.auction-card-v3__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auction-card-v3__meta span {
  font-size: 12px;
  color: #42505f;
  background: #eef2f5;
  border: 1px solid #dbe1e6;
  border-radius: 999px;
  padding: 4px 10px;
}

.auction-card-v3__live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ui-slate);
}

.live-dot-v3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ui-accent);
}

.auction-card-v3__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #e3e7eb;
  padding-top: 12px;
  font-size: 13px;
  color: #4f5a66;
}

.auction-card-v3__price {
  font-weight: 800;
  color: var(--ui-ink);
  font-size: 18px;
}

.auction-card-v3__actions {
  display: flex;
}

.empty-card-v3 {
  background: #fff;
  border: 1px solid #d6dde2;
  border-radius: 14px;
  padding: 22px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(34, 34, 34, 0.08);
}

.empty-card-v3 h3 {
  margin: 0;
  font-size: 24px;
}

.empty-card-v3 p {
  margin: 0;
  color: var(--ui-text-muted);
}

.process-grid-v3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-step-v3 {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #d7dde3;
  border-radius: 14px;
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  align-content: start;
  box-shadow: 0 10px 22px rgba(34, 34, 34, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: process-step-in 0.5s ease both;
}

.process-step-v3:nth-child(2) {
  animation-delay: 0.08s;
}

.process-step-v3:nth-child(3) {
  animation-delay: 0.16s;
}

.process-step-v3:nth-child(4) {
  animation-delay: 0.24s;
}

.process-step-v3:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 191, 67, 0.46);
  box-shadow: 0 16px 30px rgba(34, 34, 34, 0.12);
}

.process-step-v3__badge {
  justify-self: start;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ui-soft);
  border: 1px solid #d4dbe2;
  color: #41505f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: grid;
  place-items: center;
}

.process-step-v3:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 191, 67, 0.45) 0%, rgba(255, 191, 67, 1) 100%);
  animation: process-arrow-pulse 1.8s ease-in-out infinite;
  z-index: 3;
}

.process-step-v3:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: -26px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 191, 67, 1);
  border-right: 2px solid rgba(255, 191, 67, 1);
  transform: rotate(45deg);
  z-index: 3;
}

.process-step-v3 h3 {
  margin: 2px 0 0;
  font-size: 20px;
}

.process-step-v3 p {
  margin: 0;
  color: var(--ui-text-muted);
}

@keyframes process-step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-arrow-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step-v3,
  .process-step-v3::after {
    animation: none;
  }

  .process-step-v3,
  .process-step-v3__badge {
    transition: none;
  }

  .faq-item-v3,
  .faq-item-v3__answer,
  .faq-item-v3__icon::before,
  .faq-item-v3__icon::after {
    transition: none;
  }

  .contact-progress-v3__fill,
  .hero-v3__search-grid--advanced,
  .contact-submit-v3 svg {
    transition: none;
  }

  .contact-preview-v3__pulse span,
  .contact-submit-v3.is-loading svg {
    animation: none;
  }
}

.numbers-v3 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(130deg, var(--ui-ink) 0%, var(--ui-slate) 100%);
  color: #fff;
  padding: 44px 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.numbers-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 260px at 8% 18%, rgba(255, 191, 67, 0.28) 0%, transparent 68%),
    radial-gradient(620px 220px at 92% 82%, rgba(255, 255, 255, 0.08) 0%, transparent 72%);
}

.numbers-v3::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 22px;
  width: 320px;
  height: 220px;
  border-radius: 34px;
  transform: rotate(10deg);
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1.2px, transparent 1.2px);
  background-size: 15px 15px;
  opacity: 0.18;
}

.trust-v3__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.trust-v3__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.trust-v3__overline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.74);
}

.trust-v3__head h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.trust-v3__head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.trust-v3__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-v3__tag {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

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

.trust-card-v3 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
  min-height: 232px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-card-v3:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 191, 67, 0.5);
}

.trust-card-v3__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
}

.trust-card-v3__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card-v3 h3 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.trust-card-v3 p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.trust-card-v3 ul {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.trust-card-v3 li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.trust-card-v3 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ui-accent);
  box-shadow: 0 0 0 4px rgba(255, 191, 67, 0.2);
}

.trust-v3__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-section-v3 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.faq-section-v3 .section-head-v3 {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.faq-layout-v3 {
  max-width: 980px;
  margin: 0 auto;
}

.faq-accordion-v3 {
  display: grid;
  gap: 12px;
  max-width: none;
  margin: 0 auto;
  width: 100%;
}

.faq-item-v3 {
  background: #fff;
  border: 1px solid #d7dde2;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item-v3[open] {
  border-color: rgba(255, 191, 67, 0.48);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.08);
}

.faq-item-v3 summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ui-ink);
  font-family: var(--font-heading);
}

.faq-item-v3 summary::-webkit-details-marker {
  display: none;
}

.faq-item-v3 summary::marker {
  content: "";
}

.faq-item-v3__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #cad3dc;
  background: #f5f8fa;
  position: relative;
  flex: 0 0 auto;
}

.faq-item-v3__icon::before,
.faq-item-v3__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: #42515f;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.faq-item-v3__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item-v3[open] .faq-item-v3__icon {
  border-color: rgba(255, 191, 67, 0.55);
  background: #e8f8f9;
}

.faq-item-v3[open] .faq-item-v3__icon::before,
.faq-item-v3[open] .faq-item-v3__icon::after {
  background: var(--ui-accent);
}

.faq-item-v3[open] .faq-item-v3__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.faq-item-v3__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  will-change: grid-template-rows, opacity, transform;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease,
    transform 0.34s ease;
}

.faq-item-v3[open] .faq-item-v3__answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-item-v3__answer p {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 12px 18px 18px;
  border-top: 1px solid #e2e7ec;
  color: var(--ui-text-muted);
}

.contact-section-v3 {
  background:
    radial-gradient(760px 280px at -4% 6%, rgba(255, 191, 67, 0.14) 0%, transparent 72%),
    radial-gradient(620px 220px at 106% 90%, rgba(34, 34, 34, 0.08) 0%, transparent 70%),
    #f6f8f9;
  overflow: hidden;
}

.contact-layout-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.contact-layout-v3::before {
  display: none;
}

.contact-panel-v3 {
  border-radius: 16px;
  border: 1px solid #d3d9df;
  box-shadow: 0 14px 28px rgba(34, 34, 34, 0.08);
}

.contact-panel-v3 {
  background: #fff;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.contact-panel-v3__overline {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b6671;
}

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

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

.contact-field-v3 {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #4d5964;
}

.contact-field-v3 input,
.contact-field-v3 textarea {
  width: 100%;
  border: 1px solid #ced7df;
  border-radius: 11px;
  background: #fff;
  color: var(--ui-ink);
  font: inherit;
  padding: 10px 12px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.contact-field-v3 textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.5;
}

.contact-field-v3 input:focus,
.contact-field-v3 textarea:focus {
  outline: none;
  border-color: rgba(255, 191, 67, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.16);
  background: #fcfeff;
}

.contact-field-v3--full {
  grid-column: 1 / -1;
}

.contact-field-v3__counter {
  justify-self: end;
  color: #6d7a88;
  font-size: 12px;
  font-weight: 600;
}

.contact-form-v3__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-progress-v3 {
  flex: 1 1 260px;
  min-width: 220px;
  display: grid;
  gap: 7px;
}

.contact-progress-v3__track {
  height: 8px;
  border-radius: 999px;
  background: #e2e7ec;
  border: 1px solid #d4dce4;
  overflow: hidden;
}

.contact-progress-v3__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFBF43 0%, #FFD37A 100%);
  transition: width 0.26s ease;
}

.contact-progress-v3 p {
  margin: 0;
  font-size: 12px;
  color: #51606f;
  font-weight: 600;
}

.contact-submit-v3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 196px;
  justify-content: center;
}

.contact-submit-v3 svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}

.contact-submit-v3:hover svg {
  transform: translateX(2px);
}

.contact-submit-v3.is-loading svg {
  animation: contact-arrow-loop 0.8s linear infinite;
}

.contact-form-v3.is-submitting .contact-submit-v3 {
  opacity: 0.88;
  cursor: wait;
}

.contact-preview-v3 {
  position: relative;
  background: linear-gradient(135deg, var(--ui-ink) 0%, #282828 50%, var(--ui-slate) 100%);
  color: #fff;
  padding: 18px;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.contact-preview-v3::before {
  content: "";
  position: absolute;
  right: -26px;
  top: -44px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 22px solid rgba(255, 191, 67, 0.2);
  transform: rotate(-9deg);
}

.contact-preview-v3::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 10px;
  width: 108px;
  height: 108px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.3;
}

.contact-preview-v3 > * {
  position: relative;
  z-index: 1;
}

.contact-preview-v3 h3 {
  margin: 0;
  color: #fff;
  font-size: 31px;
  line-height: 1.15;
}

.contact-preview-v3__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-preview-v3__list li {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(3px);
}

.contact-preview-v3__list span {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.contact-preview-v3__list strong {
  font-size: 17px;
  line-height: 1.25;
  color: #fff;
}

.contact-preview-v3__message {
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.contact-preview-v3__message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-preview-v3__pulse {
  display: flex;
  gap: 6px;
  align-items: center;
}

.contact-preview-v3__pulse span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #FFD37A;
  box-shadow: 0 0 0 0 rgba(45, 214, 219, 0.5);
  animation: contact-dot-pulse 1.25s ease-in-out infinite;
}

.contact-preview-v3__pulse span:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-preview-v3__pulse span:nth-child(3) {
  animation-delay: 0.4s;
}

.contact-layout-v3.is-updating .contact-preview-v3 {
  box-shadow: 0 0 0 1px rgba(255, 191, 67, 0.45), 0 16px 30px rgba(34, 34, 34, 0.22);
}

@keyframes contact-dot-pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes contact-arrow-loop {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

.auctions-head-v3 {
  background: linear-gradient(135deg, var(--ui-ink) 0%, var(--ui-slate) 100%);
  color: #fff;
  padding: 46px 0 36px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.auctions-head-v3 h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 44px);
  font-family: var(--font-heading);
}

.auctions-head-v3 p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.auctions-head-v3__overline {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.auctions-layout-v3 {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.filter-panel-v3 {
  position: sticky;
  top: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
  border: 1px solid #d4dde4;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 14px 28px rgba(34, 34, 34, 0.1);
  min-width: 0;
}

.filter-panel-v3::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFBF43 0%, #FFD37A 100%);
  margin-bottom: 10px;
}

.filter-panel-v3__head {
  padding: 2px 2px 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #dfe6ec;
}

.filter-panel-v3 h2 {
  margin: 0;
  font-size: 32px;
  font-family: var(--font-heading);
}

.filter-panel-v3__head p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #556270;
}

.filter-form-v3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.filter-field-v3 {
  display: grid;
  gap: 5px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4c5864;
  font-weight: 700;
  min-width: 0;
}

.filter-form-v3 input,
.filter-form-v3 select {
  display: block;
  width: 100%;
  min-width: 0;
  height: 48px;
  border-radius: 16px;
  border-color: #ccd6df;
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.filter-form-v3 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #54606d 50%),
    linear-gradient(135deg, #54606d 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 1px), calc(100% - 16px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.filter-form-v3 input[type="number"] {
  -moz-appearance: textfield;
}

.filter-form-v3 input[type="number"]::-webkit-outer-spin-button,
.filter-form-v3 input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-form-v3 input:focus,
.filter-form-v3 select:focus {
  outline: none;
  border-color: rgba(255, 191, 67, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.15);
}

.filter-form-v3 input:hover,
.filter-form-v3 select:hover {
  border-color: #b7c5d0;
}

.filter-form-v3 input::placeholder {
  color: #8b98a6;
}

.filter-form-v3__actions {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.filter-form-v3__actions .btn {
  width: 100%;
  height: 42px;
}

.results-v3 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.results-v3__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.results-v3__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #4c5864;
  font-size: 13px;
}

.summary-pill-v3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ui-soft);
  border: 1px solid #d8dde2;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--ui-ink);
}

.filter-overview-v3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-chip-v3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid #d8dde2;
  background: #fff;
  padding: 5px 10px;
  font-size: 12px;
  color: #4c5a66;
}

.filter-chip-v3 strong {
  color: var(--ui-ink);
}

.auction-list-v3 {
  display: grid;
  gap: 12px;
}

.auction-row-v3 {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid #d6dde2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(34, 34, 34, 0.08);
}

.auction-row-v3__image {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.auction-row-v3__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.auction-row-v3__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.auction-row-v3__head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.auction-row-v3__head h3 a {
  color: var(--ui-ink);
  text-decoration: none;
}

.auction-row-v3__head h3 a:hover {
  color: var(--ui-accent);
}

.auction-row-v3__meta {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auction-row-v3__meta span {
  font-size: 12px;
  color: #465463;
  background: #eef2f5;
  border: 1px solid #dbe2e7;
  border-radius: 999px;
  padding: 4px 10px;
}

.auction-row-v3__price {
  text-align: right;
  min-width: 170px;
}

.auction-row-v3__price span {
  display: block;
  font-size: 12px;
  color: #5b6672;
}

.auction-row-v3__price strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1;
  color: var(--ui-ink);
}

.auction-row-v3__desc {
  margin: 0;
  color: #5a6671;
}

.auction-row-v3__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e1e6eb;
  padding-top: 10px;
  color: #4e5b67;
  font-size: 13px;
}

.auction-row-v3__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.auction-row-v3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.results-v3__bottom {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination-page {
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #d6dde2;
  color: var(--ui-ink);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.pagination-page.active {
  background: var(--ui-ink);
  color: #fff;
  border-color: var(--ui-ink);
}

.detail-page-v4 {
  width: 100%;
  background: #fff;
}

.detail-page-v4 .detail-hero {
  position: relative;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  padding: 26px 0 34px;
  background:
    radial-gradient(780px 340px at 10% -24%, rgba(255, 191, 67, 0.28) 0%, transparent 66%),
    radial-gradient(560px 260px at 95% 22%, rgba(255, 255, 255, 0.1) 0%, transparent 72%),
    linear-gradient(136deg, var(--ui-ink) 0%, #282828 56%, var(--ui-slate) 100%);
}

.detail-page-v4 .detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      132deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 30px
    );
  opacity: 0.32;
}

.detail-hero-v4__head,
.detail-hero-v4__layout {
  position: relative;
  z-index: 1;
}

.detail-hero-v4__head {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.detail-breadcrumb-v4 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.detail-breadcrumb-v4 a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.detail-breadcrumb-v4 a:hover {
  color: #fff;
}

.detail-hero-v4__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.detail-hero-v4__overline {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
}

.detail-hero-v4 h1 {
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  font-family: var(--font-heading);
}

.detail-hero-v4__lead {
  margin: 10px 0 0;
  max-width: 850px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.detail-hero-v4__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.detail-chip-v4 {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  white-space: nowrap;
}

.detail-hero-v4__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: start;
}

.detail-overview-v4 {
  display: grid;
  align-content: start;
}

.detail-hero-v4__layout .price-card.price-card-v4 {
  margin: 0;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  border-radius: 18px;
  border: 1px solid #c8d7e0;
  background: linear-gradient(180deg, #f8fbfc 0%, #f3f7f9 100%);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.14);
  padding: 12px;
}

.detail-hero-v4__layout .price-card-v4__head h3 {
  font-size: clamp(26px, 1.9vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.detail-hero-v4__layout .price-card-v4__head p {
  margin-top: 6px;
  font-size: 12px;
  color: #586979;
}

.detail-hero-v4__layout .price-card-v4__tools {
  margin: 10px 0 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.detail-hero-v4__layout .price-card-v4__tools form {
  margin: 0;
}

.detail-hero-v4__layout .price-card-v4__tools .btn {
  width: 100%;
  min-height: 34px;
  font-size: 12px;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.detail-hero-v4__layout .price-card-v4__watch {
  font-weight: 700;
}

.detail-hero-v4__layout .price-card-v4__watch.active {
  background: var(--ui-accent);
  border-color: var(--ui-accent);
  color: #fff;
}

.detail-hero-v4__layout .price-card-v4__metric {
  border-color: #d1dde5;
  background: #f7fafc;
  padding: 8px 10px;
  border-radius: 10px;
  gap: 2px;
}

.detail-hero-v4__layout .price-card-v4__metric--primary {
  background: #fff;
}

.detail-hero-v4__layout .price-card-v4__metric--primary strong {
  font-size: clamp(30px, 2.3vw, 38px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #19a900;
}

.detail-hero-v4__layout .price-card-v4__metric strong {
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1;
  font-weight: 800;
}

.detail-hero-v4__layout .price-card-v4__metric--min strong {
  font-size: clamp(20px, 1.45vw, 26px);
}

.detail-hero-v4__layout .price-card-v4__metric span {
  font-size: 10px;
  letter-spacing: 0.07em;
}

.detail-hero-v4__layout .price-card-v4__metric small {
  font-size: 11px;
}

.detail-hero-v4__layout .bid-form {
  margin-top: 10px;
  gap: 8px;
}

.detail-hero-v4__layout .bid-form label {
  font-size: 12px;
  line-height: 1.2;
  gap: 4px;
}

.detail-hero-v4__layout .bid-form input {
  height: 40px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.detail-hero-v4__layout .bid-actions .btn {
  min-height: 36px;
  font-size: 12px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.detail-page-v4 .detail-gallery {
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 10px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.detail-page-v4 .detail-gallery img {
  border: 0;
  border-radius: 0;
}

.detail-page-v4 .detail-main {
  height: 440px;
  object-fit: cover;
  background: #131b25;
}

.detail-page-v4 .detail-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  justify-content: flex-start;
  padding: 0 12px 12px;
}

.detail-page-v4 .detail-thumb {
  width: 96px;
  min-width: 96px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0.78;
}

.detail-page-v4 .detail-thumb.active {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 191, 67, 0.9);
}

.detail-page-v4 .gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ui-ink);
  font-size: 24px;
  z-index: 2;
}

.detail-page-v4 .gallery-nav.prev {
  left: 14px;
}

.detail-page-v4 .gallery-nav.next {
  right: 14px;
}

.detail-overview-v4__card {
  background: #fff;
  border: 1px solid #d8e0e6;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(34, 34, 34, 0.14);
  display: grid;
  gap: 14px;
}

.detail-overview-v4__status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.detail-overview-v4__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #556270;
}

.detail-overview-v4__timer {
  border: 1px solid #dde5ec;
  background: #f6f9fb;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.detail-overview-v4__timer span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5d6a77;
}

.detail-overview-v4__timer strong {
  font-size: 24px;
  color: var(--ui-ink);
}

.detail-overview-v4__price {
  display: grid;
  gap: 4px;
}

.detail-overview-v4__price span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5f6b78;
}

.detail-overview-v4__price strong {
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1;
  color: var(--ui-accent);
}

.detail-overview-v4__price small {
  color: #5f6b78;
}

.detail-overview-v4__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-overview-v4__actions .btn {
  width: 100%;
}

.detail-overview-v4__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-overview-v4__facts > div {
  border-radius: 12px;
  border: 1px solid #dfe7ed;
  background: #f7fafc;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.detail-overview-v4__facts span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5f6c79;
}

.detail-overview-v4__facts strong {
  font-size: 16px;
  color: var(--ui-ink);
  line-height: 1.2;
}

.detail-content-v4 {
  padding-top: 48px;
}

.detail-body-v4 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 20px;
  align-items: start;
}

.detail-left-v4 {
  display: grid;
  gap: 16px;
}

.detail-page-v4 .panel.detail-card-v4 {
  margin: 0;
  background: #fff;
  border: 1px solid #d8e0e6;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(34, 34, 34, 0.08);
}

.detail-card-v4__head {
  margin-bottom: 12px;
}

.detail-card-v4__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ui-ink);
  font-family: var(--font-heading);
}

.detail-card-v4__head p {
  margin: 8px 0 0;
  color: #60707e;
}

.detail-meta-v4 {
  background: transparent;
  border: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-meta-v4__item {
  border-radius: 12px;
  border: 1px solid #dfe5eb;
  background: #f8fafc;
  padding: 11px;
  min-height: 78px;
}

.detail-page-v4 .meta-label {
  font-size: 10px;
  color: #607080;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-page-v4 .meta-value {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ui-ink);
}

.detail-contact-v4 {
  display: grid;
  gap: 6px;
}

.detail-contact-v4 p {
  margin: 0;
}

.detail-page-v4 .bid-list {
  gap: 8px;
}

.detail-page-v4 .bid-item {
  border: 1px solid #dce4ea;
  background: #f8fbfc;
  border-radius: 10px;
  padding: 9px 11px;
  border-bottom-width: 1px;
}

.detail-page-v4 .bid-item > div {
  display: grid;
  gap: 3px;
}

.detail-right-v4 {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
}

.detail-page-v4 .price-card.price-card-v4 {
  background: #fff;
  border: 1px solid #d8e0e6;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.1);
}

.price-card-v4__head h3 {
  margin: 0;
  font-size: 28px;
  color: var(--ui-ink);
  font-family: var(--font-heading);
}

.price-card-v4__head p {
  margin: 8px 0 0;
  color: #60707e;
}

.price-card-v4__live-summary {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.price-card-v4__metric {
  border-radius: 12px;
  border: 1px solid #dbe3ea;
  background: #f6f9fc;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.price-card-v4__metric span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5e6c7a;
}

.price-card-v4__metric strong {
  font-size: 21px;
  color: var(--ui-ink);
  line-height: 1.1;
}

.price-card-v4__metric small {
  color: #60707e;
}

.price-card-v4__metric--primary {
  background: #fff;
}

.price-card-v4__metric--primary strong {
  font-size: clamp(34px, 3vw, 44px);
  color: var(--ui-accent);
}

.detail-page-v4 [data-rt="current_price"].value-change,
.detail-page-v4 [data-rt="min_bid"].value-change {
  animation: bid-value-pop 0.72s cubic-bezier(0.19, 0.86, 0.28, 1);
}

.detail-page-v4 .price-card-v4__metric.value-change {
  animation: bid-metric-flash 0.72s ease;
}

.detail-page-v4 .bid-form input.value-change {
  animation: bid-input-flash 0.72s ease;
}

@keyframes bid-value-pop {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255, 191, 67, 0);
  }
  28% {
    transform: translateY(-2px) scale(1.045);
    text-shadow: 0 0 18px rgba(255, 191, 67, 0.22);
  }
  100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255, 191, 67, 0);
  }
}

@keyframes bid-metric-flash {
  0% {
    border-color: #dbe3ea;
    box-shadow: 0 0 0 rgba(255, 191, 67, 0);
    background: #f6f9fc;
  }
  32% {
    border-color: rgba(255, 191, 67, 0.62);
    box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.12);
    background: #f2fdfe;
  }
  100% {
    border-color: #dbe3ea;
    box-shadow: 0 0 0 rgba(255, 191, 67, 0);
    background: #f6f9fc;
  }
}

@keyframes bid-input-flash {
  0% {
    border-color: #ccd6de;
    box-shadow: 0 0 0 rgba(255, 191, 67, 0);
  }
  40% {
    border-color: rgba(255, 191, 67, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.17);
  }
  100% {
    border-color: #ccd6de;
    box-shadow: 0 0 0 rgba(255, 191, 67, 0);
  }
}

.detail-page-v4 .bid-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.detail-page-v4 .bid-form label {
  display: grid;
  gap: 5px;
  color: #4d5a67;
  font-weight: 700;
  font-size: 13px;
}

.detail-page-v4 .bid-form input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid #ccd6de;
  padding: 0 12px;
  font-size: 16px;
}

.detail-page-v4 .bid-form input:focus {
  outline: none;
  border-color: rgba(255, 191, 67, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.15);
}

.detail-page-v4 .bid-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-page-v4 .bid-actions .btn--accent {
  grid-column: 1 / -1;
}

.detail-page-v4 .btn.active {
  background: var(--ui-accent);
  border-color: var(--ui-accent);
  color: #fff;
}

.detail-page-v4 .form-message {
  min-height: 18px;
}

.detail-page-v4 .status-box {
  border: 1px solid #f6d29f;
  background: #fff7ea;
  color: #5a4a2b;
}

.detail-page-v4 .locked-box {
  margin-top: 10px;
  border: 1px dashed #ccd8e2;
  background: #f8fbfd;
}

.detail-help-v4 {
  border-radius: 16px;
  border: 1px solid #d9e3ea;
  background: #fff;
}

.detail-help-v4 h3 {
  margin: 0;
  font-size: 20px;
  font-family: var(--font-heading);
}

.detail-help-v4 ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #5f6d7a;
}

.detail-help-v4 li {
  position: relative;
  padding-left: 14px;
}

.detail-help-v4 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ui-accent);
}

.site-footer {
  margin-top: 36px;
  background: var(--ui-ink);
  color: #fff;
  padding: 42px 0 18px;
}

.home-v3 + .site-footer {
  margin-top: 0;
}

.site-footer__inner {
  width: var(--ui-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__logo {
  line-height: 1;
}

.site-footer__logo-image {
  display: block;
  width: min(100%, 250px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.site-footer__cols h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-footer__cols a {
  color: inherit;
  text-decoration: none;
}

.site-footer__cols a:hover {
  color: var(--ui-accent);
}

.site-footer__meta {
  width: var(--ui-shell);
  margin: 0 auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
  .hero-v3__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  
  .hero-v3 {
    min-height: 0;
  }

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

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

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

  .process-step-v3::before,
  .process-step-v3::after {
    display: none;
  }

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

  .contact-layout-v3::before {
    display: none;
  }

  .auctions-layout-v3 {
    grid-template-columns: 1fr;
  }

  .filter-panel-v3 {
    position: static;
    max-width: 940px;
    margin: 0 auto;
  }

  .detail-hero-v4__title-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .detail-hero-v4__chips {
    justify-content: flex-start;
  }

  .detail-hero-v4__layout,
  .detail-body-v4 {
    grid-template-columns: 1fr;
  }

  .detail-hero-v4__layout .price-card.price-card-v4 {
    max-width: 520px;
    justify-self: start;
  }

  .detail-right-v4 {
    position: static;
  }

  .detail-page-v4 .detail-main {
    height: 360px;
  }

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

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

  .filter-field-v3--full,
  .filter-form-v3__actions {
    grid-column: 1 / -1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --ui-shell: min(1320px, calc(100% - 28px));
  }

  .home-v3 {
    background: #fff;
  }

  .hero-v3::before {
    opacity: 0.22;
  }

  .hero-v3::after {
    display: none;
  }

  .site-header__inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-logo__image {
    height: 36px;
    max-width: min(62vw, 220px);
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin: 0;
    padding-top: 6px;
    border-top: 1px solid var(--ui-border);
    overflow-x: auto;
    gap: 16px;
  }

  .site-actions {
    margin-left: auto;
  }

  .hero-v3 {
    padding: 42px 0 32px;
  }

  .hero-v3__content h1 {
    font-size: 34px;
  }

  .hero-v3__lead {
    font-size: 16px;
  }

  .hero-v3__search-grid {
    grid-template-columns: 1fr;
  }

  .section-head-v3--inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head-v3 h2 {
    font-size: 30px;
  }

  .category-grid-v3,
  .auction-grid-v3,
  .process-grid-v3,
  .trust-v3__grid {
    grid-template-columns: 1fr;
  }

  .faq-accordion-v3 {
    max-width: none;
  }

  .faq-item-v3 summary {
    font-size: 18px;
    padding: 14px 16px;
  }

  .faq-item-v3__answer p {
    padding: 10px 16px 16px;
  }

  .contact-panel-v3 {
    border-radius: 14px;
    padding: 14px;
  }

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

  .contact-submit-v3 {
    width: 100%;
  }

  .contact-progress-v3 {
    min-width: 0;
    width: 100%;
  }

  .trust-v3__head {
    align-items: flex-start;
  }

  .trust-v3__tag {
    width: 100%;
    justify-content: center;
  }

  .filter-panel-v3 {
    max-width: none;
  }

  .filter-panel-v3 h2 {
    font-size: 30px;
  }

  .detail-hero-v4 {
    padding-top: 20px;
  }

  .detail-hero-v4 h1 {
    font-size: 34px;
  }

  .detail-hero-v4__lead {
    font-size: 16px;
  }

  .detail-hero-v4__layout .price-card-v4__head h3 {
    font-size: 24px;
  }

  .detail-hero-v4__layout .price-card-v4__metric--primary strong {
    font-size: 30px;
  }

  .detail-hero-v4__layout .price-card-v4__metric strong {
    font-size: 20px;
  }

  .detail-hero-v4__layout .bid-form input {
    font-size: 18px;
    height: 38px;
  }

  .detail-hero-v4__layout .bid-actions .btn {
    min-height: 34px;
    font-size: 12px;
  }

  .detail-hero-v4__layout .price-card-v4__tools {
    grid-template-columns: 1fr;
  }

  .detail-page-v4 .detail-main {
    height: 280px;
  }

  .detail-overview-v4__actions,
  .detail-overview-v4__facts {
    grid-template-columns: 1fr;
  }

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

  .detail-page-v4 .bid-actions {
    grid-template-columns: 1fr;
  }

  .detail-page-v4 .bid-actions .btn--accent {
    grid-column: auto;
  }

  .auction-row-v3 {
    grid-template-columns: 1fr;
  }

  .auction-row-v3__image {
    min-height: 210px;
  }

  .auction-row-v3__head {
    flex-direction: column;
  }

  .auction-row-v3__price {
    text-align: left;
    min-width: 0;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .filter-form-v3 {
    grid-template-columns: 1fr;
  }

  .filter-form-v3__actions {
    grid-template-columns: 1fr 1fr;
  }

  .detail-hero-v4 h1 {
    font-size: 30px;
  }

  .detail-hero-v4__layout .price-card-v4__head h3 {
    font-size: 22px;
  }

  .detail-hero-v4__layout .price-card-v4__metric--primary strong {
    font-size: 28px;
  }

  .detail-hero-v4__layout .price-card-v4__metric strong {
    font-size: 18px;
  }

  .detail-hero-v4__layout .bid-form input {
    font-size: 16px;
    height: 36px;
  }

  .detail-hero-v4__layout .bid-actions .btn {
    min-height: 32px;
    font-size: 11px;
  }

  .detail-hero-v4__layout .price-card-v4__tools .btn {
    min-height: 32px;
  }

  .detail-page-v4 .detail-thumb {
    width: 82px;
    min-width: 82px;
    height: 62px;
  }

  .detail-page-v4 .gallery-nav {
    width: 36px;
    height: 36px;
  }
}

/* =========================================================
   Dashboards + Notifications V4
   ========================================================= */

.dashboard-v4.dashboard-shell {
  width: var(--ui-shell);
  margin: 26px auto 44px;
  padding: 0;
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.dashboard-v4 .dashboard-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.dashboard-v4 .dashboard-header {
  align-items: flex-start;
  border: 1px solid #d9e2e8;
  background:
    radial-gradient(580px 180px at 94% 8%, rgba(255, 191, 67, 0.12), transparent 72%),
    #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
}

.dashboard-v4 .dashboard-header h2 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.12;
  color: var(--ui-ink);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.dashboard-v4 .dashboard-header .muted {
  margin: 8px 0 0;
  color: #607080;
}

.dashboard-side-v4 {
  position: sticky;
  top: 94px;
  border-radius: 16px;
  border: 1px solid #d7e0e7;
  background:
    radial-gradient(220px 120px at 18% 0%, rgba(255, 191, 67, 0.12), transparent 70%),
    #fff;
  box-shadow: 0 12px 26px rgba(34, 34, 34, 0.08);
  padding: 16px;
  display: grid;
  gap: 14px;
}

.dashboard-side-v4 .sidebar-top {
  gap: 10px;
}

.dashboard-side-v4 .avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--ui-ink), #313131);
}

.dashboard-side-v4 .user-name {
  font-weight: 800;
  color: var(--ui-ink);
  font-size: 15px;
}

.dashboard-side-v4 .user-role {
  font-size: 12px;
  color: #607080;
}

.dashboard-side-v4 .sidebar-nav {
  display: grid;
  gap: 8px;
}

.dashboard-side-v4 .nav-item {
  border: 1px solid #d7e0e7;
  border-radius: 10px;
  background: #f8fbfd;
  color: #243140;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 11px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-side-v4 .nav-item:hover {
  border-color: rgba(255, 191, 67, 0.55);
  background: #f0f7f8;
  color: #1a4357;
  transform: translateX(2px);
}

.dashboard-side-v4 .nav-item.active {
  border-color: var(--ui-slate);
  background: linear-gradient(135deg, #282828, #313131);
  color: #fff;
}

.dashboard-side-v4 .sidebar-card {
  margin-top: 2px;
  border-radius: 12px;
  border: 1px solid #d7e1e8;
  background: #f5f9fb;
  padding: 12px;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.dashboard-side-v4 .sidebar-card h4 {
  margin: 0;
  font-size: 15px;
}

.dashboard-side-v4 .sidebar-card .muted {
  margin: 6px 0 0;
  color: #607080;
}

.dashboard-side-v4 .sidebar-card ul {
  margin: 10px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
  color: #3f4f5f;
}

.dashboard-v4 .dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-v4 .dashboard-stats--admin {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-v4 .dashboard-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border: 1px solid #d7e1e8;
  border-radius: 14px;
  background:
    radial-gradient(320px 110px at 90% 0%, rgba(255, 191, 67, 0.12), transparent 72%),
    #fff;
  box-shadow: 0 8px 18px rgba(34, 34, 34, 0.06);
}

.dashboard-v4 .dashboard-subtab {
  appearance: none;
  border: 1px solid #d6e0e7;
  border-radius: 10px;
  background: #f8fbfd;
  color: #2b3a4a;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-v4 .dashboard-subtab:hover {
  border-color: rgba(255, 191, 67, 0.55);
  background: #f0f7f8;
  color: #19485d;
}

.dashboard-v4 .dashboard-subtab.active {
  border-color: var(--ui-slate);
  background: linear-gradient(135deg, #282828, #313131);
  color: #fff;
}

.dashboard-v4 [data-subtab-panel].is-hidden {
  display: none !important;
}

.dashboard-v4 .stat-card {
  border: 1px solid #d7e1e8;
  border-radius: 14px;
  background:
    radial-gradient(220px 90px at 100% 0, rgba(40, 40, 40, 0.08), transparent 72%),
    #fff;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 22px rgba(34, 34, 34, 0.06);
}

.dashboard-v4 .stat-card .meta-label {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #556777;
}

.dashboard-v4 .stat-card .stat-value {
  margin-top: 6px;
  display: block;
  color: var(--ui-ink);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.dashboard-v4 .stat-card .muted {
  margin: 8px 0 0;
  color: #5f7080;
  font-size: 13px;
}

.dashboard-v4 .dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.dashboard-v4 .panel--span-2 {
  grid-column: 1 / -1;
}

.dashboard-v4 [data-subtab-panel] {
  grid-column: 1 / -1;
  min-width: 0;
}

.dashboard-v4 .panel {
  margin: 0;
  border: 1px solid #d7e0e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.07);
  padding: 14px;
}

.dashboard-v4 .panel:hover {
  transform: none;
  box-shadow: 0 12px 26px rgba(34, 34, 34, 0.09);
}

.dashboard-v4 .panel-header {
  align-items: center;
}

.dashboard-v4 .panel-header h3 {
  margin: 0;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.2;
  color: var(--ui-ink);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dashboard-v4 .pill {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.dashboard-v4 .pill:not(.muted):not(.accent) {
  border: 1px solid #d6e0e6;
  background: #f3f8fa;
  color: #35586b;
}

.dashboard-v4 .pill.muted {
  border: 1px solid #d9e0e6;
  background: #f7fafc;
  color: #5b6d7d;
}

.dashboard-v4 .pill.accent {
  border: 1px solid rgba(255, 191, 67, 0.42);
  background: #ebf7f8;
  color: #1f6468;
}

.dashboard-v4 .table {
  gap: 6px;
  min-width: 0;
  border: 1px solid #dee6ec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.dashboard-v4 .table-row {
  border-bottom: 1px solid #e5ecf1;
  grid-template-columns: minmax(0, 1.45fr) minmax(120px, 0.9fr) minmax(130px, 0.8fr) minmax(130px, 0.8fr);
  padding: 10px 12px;
  font-size: 13px;
  color: #2b3a4a;
  min-width: 0;
}

.dashboard-v4 .table-row:not(.header):nth-child(even) {
  background: #f9fcfe;
}

.dashboard-v4 .table-row.header {
  border-bottom-width: 1px;
  font-size: 10px;
  color: #607182;
  background: #f3f8fb;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dashboard-v4 .table-row:last-child {
  border-bottom: 0;
}

.dashboard-v4 .table-row > span {
  min-width: 0;
}

.dashboard-v4 .table-row > span:nth-child(3) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-v4 .panel-pagination {
  margin-top: 6px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-v4 .pagination {
  justify-content: center;
  gap: 6px;
}

.dashboard-v4 .pagination-page {
  appearance: none;
  cursor: pointer;
}

.dashboard-v4 .pagination-page.disabled,
.dashboard-v4 .pagination-page:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dashboard-v4 .pagination-dots {
  min-width: 24px;
  text-align: center;
  color: #6c7f90;
  font-weight: 800;
}

.dashboard-v4 .status {
  border: 1px solid transparent;
  font-weight: 700;
}

.dashboard-v4 .status.warning {
  border-color: #f4d9b8;
}

.dashboard-v4 .status.live {
  border-color: rgba(255, 191, 67, 0.35);
}

.dashboard-v4 .status.paid {
  border-color: #cfe6d8;
}

.dashboard-v4 .table-actions {
  gap: 6px;
  justify-content: flex-end;
}

.dashboard-v4 .lead-list {
  display: grid;
  gap: 10px;
}

.dashboard-v4 .lead-card {
  border-radius: 12px;
  border: 1px solid #d9e3ea;
  background: #ffffff;
  box-shadow: none;
  padding: 12px 14px;
  gap: 10px;
}

.dashboard-v4 .lead-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-v4 .lead-card__top-main {
  min-width: 0;
}

.dashboard-v4 .lead-card__chip {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-v4 .lead-card__meta {
  margin: 5px 0 0;
  color: #5d7080;
  font-size: 14px;
}

.dashboard-v4 .lead-card__action {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
}

.dashboard-v4 .lead-card__rows {
  border-top: 1px solid #e6edf2;
  padding-top: 10px;
  display: grid;
  gap: 8px;
}

.dashboard-v4 .lead-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.dashboard-v4 .lead-key {
  color: #516474;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-v4 .lead-value {
  color: #223546;
  font-size: 14px;
  line-height: 1.4;
  min-width: 0;
}

.dashboard-v4 .lead-details {
  gap: 4px;
  color: #394a5a;
  align-items: flex-start;
}

.dashboard-v4 .lead-card h4 {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.22;
}

.dashboard-v4 .lead-card .muted {
  margin: 3px 0 0;
  font-size: 13px;
}

.dashboard-v4 .lead-details p {
  margin: 0;
  line-height: 1.35;
  font-size: 13px;
}

.dashboard-v4 .lead-details p:last-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard-v4 .lead-details .primary.small {
  min-height: 34px;
  padding: 7px 12px;
  margin-top: 3px;
  align-self: flex-start;
}

.dashboard-v4 .notification-list {
  display: grid;
  gap: 8px;
}

.dashboard-v4 .notification--dashboard {
  border-radius: 12px;
  border: 1px solid #d8e2e8;
  background: #fbfdff;
  padding: 11px 12px;
  box-shadow: none;
}

.dashboard-v4 .notification--dashboard.notification--new {
  border-color: rgba(255, 191, 67, 0.58);
  background: linear-gradient(90deg, rgba(255, 191, 67, 0.1) 0%, rgba(255, 255, 255, 0.98) 38%);
}

.dashboard-v4 .notification__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.dashboard-v4 .notification__type {
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
}

.dashboard-v4 .notification__type--success {
  background: #eefaf3;
  color: #1f7343;
  border-color: #cde9d7;
}

.dashboard-v4 .notification__type--warning {
  background: #fff8ef;
  color: #a1671f;
  border-color: #f4dfc4;
}

.dashboard-v4 .notification__type--accent {
  background: #edf7fb;
  color: #313131;
  border-color: #d2e7ef;
}

.dashboard-v4 .notification__time {
  color: #667888;
  font-size: 12px;
}

.dashboard-v4 .notification__message {
  margin: 7px 0 0;
  color: #334658;
  font-size: 14px;
}

.dashboard-v4 .notification__link {
  margin-top: 8px;
  display: inline-flex;
  color: #313131;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-v4 .notification__link:hover {
  color: #282828;
  text-decoration: underline;
}

.dashboard-v4 .form-grid {
  gap: 10px;
}

.dashboard-v4 .form-grid label {
  font-size: 12px;
  color: #556777;
  font-weight: 700;
  gap: 5px;
}

.dashboard-v4 .form-grid input,
.dashboard-v4 .form-grid select,
.dashboard-v4 .form-grid textarea {
  border: 1px solid #d1dce3;
  background: #fff;
  border-radius: 10px;
  min-height: 40px;
  padding: 0 10px;
  font-size: 14px;
  color: #1f2f3e;
}

.dashboard-v4 .form-grid textarea {
  min-height: 82px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dashboard-v4 .form-grid input:focus,
.dashboard-v4 .form-grid select:focus,
.dashboard-v4 .form-grid textarea:focus {
  outline: none;
  border-color: rgba(255, 191, 67, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 191, 67, 0.12);
}

.dashboard-v4 .form-actions {
  margin-top: 6px;
}

.dashboard-v4 .panel--logs .table-row {
  grid-template-columns: 1.15fr 1fr 0.85fr 1.5fr;
}

.dashboard-v4 .panel--logs .table-row span {
  word-break: break-word;
}

.site-header .notif-panel {
  width: min(390px, calc(100vw - 20px));
  max-height: 500px;
  border-radius: 16px;
  border: 1px solid #d7e1e8;
  background: #fff;
  box-shadow: 0 20px 34px rgba(34, 34, 34, 0.18);
  overflow: hidden;
}

.site-header .notif-header {
  padding: 11px 13px;
  border-bottom: 1px solid #e4ebf0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #f8fbfd;
}

.notif-header__title {
  display: grid;
  gap: 2px;
}

.notif-header__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 800;
  color: #66798a;
}

.site-header .notif-header strong {
  font-size: 16px;
  color: #1f2f3e;
  text-transform: none;
  letter-spacing: 0;
}

.site-header .notif-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #d7e1e8;
  background: #fff;
  color: #536676;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.site-header .notif-close:hover {
  border-color: rgba(255, 191, 67, 0.62);
  color: #234b5f;
}

.site-header .notif-list {
  padding: 8px;
  gap: 7px;
  overflow-y: auto;
  max-height: 390px;
  background: #fff;
}

.site-header .notif-item {
  border-radius: 11px;
  border: 1px solid #dde6ec;
  padding: 9px 10px;
  background: #fff;
  display: grid;
  gap: 6px;
}

.site-header .notif-item.unread {
  border-color: rgba(255, 191, 67, 0.58);
  background: linear-gradient(90deg, rgba(255, 191, 67, 0.11) 0%, rgba(255, 255, 255, 0.98) 40%);
}

.site-header .notif-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.site-header .notif-type {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid transparent;
}

.site-header .notif-type--neutral {
  background: #f1f5f8;
  color: #506273;
  border-color: #d6e1e8;
}

.site-header .notif-type--accent {
  background: #edf7fb;
  color: #313131;
  border-color: #d2e7ef;
}

.site-header .notif-type--success {
  background: #eefaf3;
  color: #1f7343;
  border-color: #cde9d7;
}

.site-header .notif-type--warning {
  background: #fff8ef;
  color: #a1671f;
  border-color: #f4dfc4;
}

.site-header .notif-message {
  font-size: 14px;
  line-height: 1.4;
  color: #304253;
}

.site-header .notif-meta {
  font-size: 12px;
  color: #6a7d8d;
}

.site-header .notif-link {
  margin-top: 2px;
  display: inline-flex;
  width: fit-content;
  color: #313131;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-header .notif-link:hover {
  color: #282828;
  text-decoration: underline;
}

.site-header .notif-empty {
  border-radius: 12px;
  border: 1px dashed #d4dee5;
  background: #f9fbfc;
  padding: 16px 14px;
  text-align: center;
  color: #6a7d8d;
}

.site-header .notif-footer {
  border-top: 1px solid #e3ebf1;
  padding: 9px 11px;
  background: #f8fbfd;
}

.site-header .notif-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #313131;
  font-size: 13px;
  font-weight: 700;
}

.site-header .notif-footer__link:hover {
  color: #282828;
}

@media (max-width: 1260px) {
  .dashboard-v4 .dashboard-stats--admin {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .dashboard-v4.dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-side-v4 {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .dashboard-side-v4 .sidebar-top,
  .dashboard-side-v4 .sidebar-nav,
  .dashboard-side-v4 .sidebar-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .dashboard-v4 .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-v4 .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-v4 .panel--span-2 {
    grid-column: auto;
  }

  .dashboard-v4 .table-row,
  .dashboard-v4 .panel--logs .table-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .dashboard-v4 .table-row.header {
    display: none;
  }

  .dashboard-v4 .lead-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-v4 .lead-card__action {
    width: 100%;
    justify-content: center;
  }

  .dashboard-v4 .lead-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 820px) {
  .site-header .notif-panel {
    right: -6px;
  }

  .dashboard-v4 .dashboard-header {
    padding: 14px;
  }

  .dashboard-v4 .dashboard-header h2 {
    font-size: 32px;
  }
}
