:root {
  --cta: #3665f3;
  --cta-hover: #2b54cc;
  --link: #0654ba;
  --text: #111820;
  --muted: #767676;
  --border: #e5e5e5;
  --panel: #f7f7f7;
  --img-bg: #ebebeb;
  --purple: #593cbf;
  --radius: 4px;
}

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

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ----- Utility bar ----- */
.util-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.util-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}

.util-left,
.util-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.util-gap {
  width: 8px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: transparent;
  color: #414141;
  cursor: pointer;
  border-radius: 4px;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 12px 18px 14px;
}

.header-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-mobile-icons {
  display: none;
  margin-left: auto;
  gap: 8px;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #1e1e1e;
  text-decoration: none;
}

.wordmark:hover {
  text-decoration: none;
  opacity: 0.88;
}

.ebay-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  display: inline-flex;
  align-items: baseline;
}

.ebay-logo .e1 {
  color: #e53238;
}

.ebay-logo .e2 {
  color: #0064d2;
  margin-left: -1px;
}

.ebay-logo .e3 {
  color: #f5af02;
  margin-left: -1px;
}

.ebay-logo .e4 {
  color: #86b817;
  margin-left: -1px;
}

.btn-cat {
  border: 1px solid #d5d5d5;
  background: linear-gradient(180deg, #fff, #f5f5f5);
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  color: #333;
}

.btn-cat:hover {
  border-color: #b6b6b6;
}

.header-search-row {
  flex: 1 1 380px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.search-shell {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 44px;
  border: 1px solid #252525;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.search-input {
  flex: 1;
  border: none;
  padding: 0 14px;
  font-size: 15px;
  min-width: 0;
}

.search-allcat {
  border: none;
  border-left: 1px solid #e5e5e5;
  background: #f7f7f7;
  padding: 0 14px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  color: #333;
}

.search-submit {
  border: none;
  background: linear-gradient(180deg, #4d7dff 0%, #3665f3 100%);
  color: #fff;
  font-weight: 700;
  padding: 0 28px;
  cursor: pointer;
  font-size: 14px;
}

.search-submit:hover {
  filter: brightness(0.96);
}

.search-advanced {
  flex-shrink: 0;
  font-size: 13px;
  white-space: nowrap;
}

/* Promo */
.promo-strip {
  background: linear-gradient(90deg, #5b21c6, #7c3aed);
  color: #fff;
  font-size: 13px;
}

.promo-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 10px 18px;
}

.promo-link {
  color: #fff;
  font-weight: 700;
  margin-left: auto;
}

.promo-text {
  opacity: 0.95;
}

.breadcrumb {
  padding: 12px 18px;
  font-size: 12px;
  color: var(--muted);
}

.breadcrumb .sep {
  margin: 0 6px;
}

/* ----- Listing 3-col ----- */
.listing-shell {
  padding: 22px 0 36px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 22%);
  border-top: 1px solid #efefef;
}

.listing-grid {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(300px, 1fr) minmax(232px, 272px);
  gap: 28px 32px;
  align-items: start;
}

@media (max-width: 1120px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .col-rail {
    order: 3;
  }

  .watch-pill-floating {
    display: none;
  }
}

.gallery-split {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}

.thumb-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumb-col button {
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: inset 0 0 0 1px #cfcfcf;
}

.thumb-col button.is-active {
  border-color: var(--cta);
  box-shadow: inset 0 0 0 1px var(--cta);
}

.thumb-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrap {
  position: relative;
}

.watch-pill-floating {
  position: absolute;
  top: -6px;
  right: 8px;
  z-index: 5;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.watch-pill-floating .h {
  color: #e53238;
}

.hero-frame {
  position: relative;
  background: linear-gradient(180deg, #f0f0f0 0%, #ebebeb 100%);
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 18px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-frame img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.badge-hot {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e53238;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-count-badge {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  border: 1px solid #d8d8d8;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #222;
}

.mobile-gallery-dots {
  display: none;
}

.gal-prev,
.gal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.gal-prev:hover,
.gal-next:hover {
  border-color: #b8b8b8;
}

.gal-prev {
  left: 12px;
}

.gal-next {
  right: 12px;
}

.gal-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* Toolbar */
.sell-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
}

.pill-share {
  margin-left: auto;
}

.similar-block {
  margin-top: 28px;
}

.similar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.similar-title {
  margin: 0;
  font-size: 18px;
}

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

.see-all {
  font-weight: 700;
}

.similar-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.sim-card {
  flex: 0 0 168px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.sim-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.sim-img-wrap {
  position: relative;
  height: 140px;
  background: var(--panel);
}

.sim-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sim-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.sim-body {
  padding: 10px;
  font-size: 12px;
}

.sim-title {
  height: 34px;
  overflow: hidden;
  margin-bottom: 6px;
}

.sim-price {
  font-weight: 800;
}

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

/* Main column */
.col-main {
  min-width: 0;
}

.vi-title {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #111;
}

.seller-chip {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 18px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.seller-chip:hover {
  border-color: #cfcfcf;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sc-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ddd, #bbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.sc-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-name {
  font-weight: 700;
}

.sc-num {
  color: var(--muted);
  font-weight: 600;
}

.sc-rate {
  font-weight: 700;
}

.sc-mini {
  font-size: 12px;
  color: var(--link);
}

.sc-go {
  font-size: 22px;
  color: var(--muted);
}

.price-block {
  margin-bottom: 12px;
}

.pb-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.pb-price {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pb-obo {
  font-size: 14px;
  color: var(--muted);
}

.pb-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.condition-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

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

.qty-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.qty-select {
  padding: 8px 32px 8px 10px;
  border: 1px solid #949494;
  border-radius: var(--radius);
  font-size: 14px;
  background: #fff;
}

.qty-note {
  font-size: 12px;
  color: var(--muted);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.btn-solid {
  border: none;
  border-radius: 24px;
  padding: 13px 18px;
  font-size: 16px;
  font-weight: 700;
  background: var(--cta);
  color: #fff;
  cursor: pointer;
  min-height: 48px;
}

.btn-solid:hover:not(:disabled) {
  background: var(--cta-hover);
}

.btn-solid:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-outline {
  border-radius: 24px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--cta);
  color: var(--cta);
  cursor: pointer;
  min-height: 48px;
}

.btn-outline:hover {
  background: #f3f6ff;
}

.btn-watch {
  font-weight: 700;
}

.btn-sm {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 22px;
}

.checkout-error {
  color: #d0021b;
  font-size: 13px;
  margin: 0 0 10px;
}

.card-panel {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 16px 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Rail */
.col-rail {
  position: sticky;
  top: 76px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rail-watch {
  width: 100%;
}

.urgency {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.45;
  background: #f4f4f4;
}

.ic-lightning {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M13 2L3 14h7l-1 8 11-12h-7z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.ic-shield {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23228727' d='M12 2l8 4v6c0 5-3.5 9.7-8 11-4.5-1.3-8-6-8-11V6l8-4z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.rail-h {
  margin: 0 0 10px;
  font-size: 15px;
}

.rail-dl {
  margin: 0;
}

.rail-dl dt {
  font-weight: 700;
  margin-top: 12px;
}

.rail-dl dd {
  margin: 6px 0 0;
  color: #414141;
}

.warn {
  color: #c00;
  font-weight: 700;
}

.muted-mini {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.pay-row-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.pay-paypal {
  color: #003087;
}

.pay-gpay {
  font-weight: 600;
  color: #5f6368;
}

.pay-visa {
  color: #1434cb;
  letter-spacing: 0.02em;
}

.pay-mc {
  position: relative;
  padding-left: 26px;
}

.pay-mc::before,
.pay-mc::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.pay-mc::before {
  left: 8px;
  background: #eb001b;
}

.pay-mc::after {
  left: 14px;
  background: #f79e1b;
  mix-blend-mode: multiply;
}

.pay-discover {
  position: relative;
  padding-right: 13px;
}

.pay-discover::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 6px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: #ff6000;
}

.pay-apple {
  font-weight: 600;
}

.confidence .cf-title {
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.mobile-shipping {
  display: none;
}

.desktop-shipping {
  display: block;
}

.cf-p {
  margin: 0;
  font-size: 13px;
  color: #414141;
}

/* About */
.about-wrap {
  padding: 8px 18px 56px;
}

.about-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 14px;
}

.about-tab {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
}

.about-tab.is-on {
  font-weight: 800;
  color: var(--text);
  border-bottom: 3px solid var(--cta);
  margin-bottom: -2px;
}

.about-tab-link {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  align-self: flex-end;
}

.about-tab-link:hover {
  color: var(--text);
  text-decoration: none;
}

.about-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.about-updated {
  margin-bottom: 18px;
}

.about-h2 {
  font-size: 17px;
  margin: 22px 0 12px;
}

.about-h3 {
  font-size: 14px;
  margin: 16px 0 8px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-grid .spec-pair {
  margin: 0;
}

.spec-grid .sk {
  font-weight: 400;
  color: var(--muted);
  margin: 0 0 4px;
}

.spec-grid .sv {
  margin: 0;
}

.link-btn {
  border: none;
  background: none;
  padding: 0;
  margin-left: 6px;
  font: inherit;
  color: var(--link);
  cursor: pointer;
  text-decoration: underline;
}

.cond-wrap {
  line-height: 1.45;
}

.desc-shell {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 40%);
}

/* Embedded storefront preview (demo) */
.desc-browser {
  margin: 18px 0 8px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  background: #ececec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.db-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #f6f6f6, #ebebeb);
  border-bottom: 1px solid #d6d6d6;
}

.db-traffic {
  display: inline-flex;
  gap: 6px;
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.db-dot.r {
  background: #ff5f56;
}

.db-dot.y {
  background: #ffbd2e;
}

.db-dot.g {
  background: #27c93f;
}

.db-url {
  font-size: 12px;
  color: #555;
  flex: 1;
  text-align: center;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 6px 10px;
  background: #fff;
}

.db-inner {
  padding: 14px;
  background: linear-gradient(180deg, #f3f3f3 0%, #eaeaea 100%);
}

.db-banner {
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 12px;
  text-align: center;
}

.db-shopbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
}

.db-mini-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ddd, #bbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.db-shop-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-shop-name {
  font-weight: 800;
}

.db-shop-tag {
  font-size: 12px;
  color: var(--muted);
}

.db-shop-actions {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 2px;
}

.db-title {
  margin: 12px 0 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
}

.db-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
}

.db-mini-table th {
  text-align: left;
  font-weight: 600;
  padding: 10px 12px;
  width: 42%;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.db-mini-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.db-mini-table tr:last-child th,
.db-mini-table tr:last-child td {
  border-bottom: none;
}

/* Seller profile (full-width section) */
.seller-profile-section {
  background: #f5f5f5;
  padding: 28px 0 36px;
  border-top: 1px solid #ececec;
  scroll-margin-top: 96px;
}

.seller-profile-inner {
  max-width: 1366px;
}

.seller-profile-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.sp-head {
  padding: 16px 18px 0;
}

.sp-main-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.sp-columns {
  display: grid;
  grid-template-columns: minmax(280px, 34%) 1fr;
  gap: 0;
}

@media (max-width: 960px) {
  .sp-columns {
    grid-template-columns: 1fr;
  }

  .sp-right {
    border-left: none !important;
    border-top: 1px solid #ececec;
  }
}

.sp-left {
  padding: 18px 20px 24px;
}

.sp-right {
  padding: 18px 20px 24px;
  border-left: 1px solid #ececec;
}

.sp-id {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.sp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ddd, #bbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.sp-name {
  font-weight: 800;
  font-size: 16px;
}

.sp-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.sp-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  color: #414141;
}

.sp-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ic-cal,
.ic-clock {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.65;
}

.ic-cal {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.ic-clock {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.sp-bio {
  margin: 0 0 14px;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
}

.sp-more {
  white-space: nowrap;
}

.chev {
  font-size: 12px;
}

.sp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.sp-ratings-title {
  margin: 18px 0 12px;
  font-size: 15px;
}

.rating-bars {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rating-bars li {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 200px) 40px;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}

@media (max-width: 520px) {
  .rating-bars li {
    grid-template-columns: 1fr;
  }
}

.rating-bars .bar {
  height: 8px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
}

.rating-bars .bar span {
  display: block;
  height: 100%;
  background: #222;
  border-radius: 999px;
}

.bar-num {
  font-weight: 700;
  text-align: right;
}

/* Seller feedback list */
.sb-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.sb-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.sb-count {
  font-weight: 700;
  color: var(--muted);
}

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

.sb-filter-lbl {
  font-size: 12px;
  color: var(--muted);
}

.sb-select {
  padding: 8px 28px 8px 10px;
  border: 1px solid #949494;
  border-radius: 6px;
  font-size: 13px;
  background: #fff;
}

.sb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-list > li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
}

.sb-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.sb-pos {
  background: #268926;
}

.sb-neu {
  background: #8f8f8f;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.sb-neg {
  background: #d93025;
  font-size: 16px;
  padding-bottom: 2px;
}

.sb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.sb-user {
  font-weight: 700;
}

.sb-lite {
  font-weight: 600;
  color: var(--muted);
}

.sb-vp {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.sb-time {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.sb-comment {
  margin: 8px 0 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.sb-itemline {
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.sb-itemlbl {
  font-weight: 400;
  color: var(--text);
}

.sb-itemlink {
  font-size: 13px;
  font-weight: 400;
  margin-left: 2px;
}

.sb-snapshot {
  margin: 4px 0 18px;
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
}

.sb-snapshot-lede {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.sb-snapshot-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-snap-line {
  display: grid;
  grid-template-columns: 92px 1fr 52px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

@media (max-width: 520px) {
  .sb-snap-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sb-snap-count {
    justify-self: start;
  }
}

.sb-snap-label {
  color: var(--text);
}

.sb-snap-track {
  height: 10px;
  background: #e8e8e8;
  border-radius: 999px;
  overflow: hidden;
}

.sb-snap-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.sb-snap-pos {
  background: #268926;
}

.sb-snap-neu {
  background: #8f8f8f;
}

.sb-snap-neg {
  background: #d93025;
}

.sb-snap-count {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.sb-pager {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}

.sb-pager-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sb-pager-sum {
  font-size: 12px;
  color: var(--muted);
}

.sb-pager-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
}

.sb-pager-btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #c7c7c7;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  color: var(--text);
}

.sb-pager-btn:hover:not(:disabled) {
  border-color: #949494;
  background: #f7f7f7;
}

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

.sb-pager-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.sb-page-num {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  color: var(--link);
  font-weight: 700;
}

.sb-page-num:hover:not(.is-current) {
  text-decoration: underline;
}

.sb-page-num.is-current {
  background: var(--text);
  color: #fff;
  cursor: default;
  text-decoration: none;
}

.sb-page-ellip {
  padding: 0 6px;
  font-size: 13px;
  color: var(--muted);
  user-select: none;
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
  padding: 22px 18px 10px;
  border-bottom: 1px solid #4d4d4d;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fg-head {
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.fg-col a {
  display: block;
  color: #cfcfcf;
  font-size: 11px;
  margin-bottom: 8px;
}

.fg-col a:hover {
  color: #fff;
}

.desc-body {
  margin: 0;
  white-space: pre-wrap;
  font-size: 13px;
  color: #414141;
}

.bullets {
  margin: 0;
  padding-left: 18px;
}

.bullets li {
  margin-bottom: 6px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #393939;
  color: #cfcfcf;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: center;
  padding: 14px 18px 10px;
}

.footer-inner {
  padding: 8px 18px 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  line-height: 1.55;
}

.similar-block.mid-carousel {
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid #ececec;
}

.trust-wide {
  padding: 28px 18px 26px;
  border-top: 1px solid var(--border);
  background: #fff;
}

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

@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-tile {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  font-size: 13px;
  color: #414141;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-tile strong {
  font-size: 14px;
  color: #111;
}

.trust-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(145deg, #3665f3, #2f56cc);
}

.trust-ico.tr2 {
  background: linear-gradient(145deg, #228727, #1b6b1f);
}

.trust-ico.tr3 {
  background: linear-gradient(145deg, #f5af02, #d99400);
}

.trust-ico.tr4 {
  background: linear-gradient(145deg, #555, #333);
}

.legal-stack {
  padding: 30px 18px 38px;
  border-top: 1px solid var(--border);
  background: #fbfbfb;
}

.legal-h {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}

.legal-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 36px;
  font-size: 13px;
  color: #414141;
  line-height: 1.6;
}

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

.legal-col p {
  margin: 0 0 12px;
}

.legal-col p:last-child {
  margin-bottom: 0;
}

.footer-grid.footer-grid-2 {
  border-top: 1px solid #4d4d4d;
  padding-top: 20px;
}

.sb-feed-note {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
}

/* FAB */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 80;
}

.fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 18px;
}

/* Listing picker */
.listing-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.listing-picker select {
  flex: 1;
  min-width: 200px;
  padding: 8px 10px;
  border: 1px solid #949494;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 14px;
  }

  .util-bar,
  .promo-strip,
  .breadcrumb,
  .sell-toolbar,
  .fab-stack {
    display: none;
  }

  .site-header {
    position: static;
    border-bottom: 1px solid #d8d8d8;
    box-shadow: none;
  }

  .header-main {
    display: block;
    padding: 10px 14px 12px;
  }

  .header-brand-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .wordmark {
    transform: scale(0.52);
    transform-origin: left center;
    margin-right: -56px;
  }

  .btn-cat,
  .search-advanced,
  .search-allcat {
    display: none;
  }

  .header-mobile-icons {
    display: inline-flex;
  }

  .header-mobile-icons .icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
  }

  .header-search-row {
    display: block;
  }

  .search-shell {
    min-height: 52px;
    border: 1px solid #b8b8b8;
    border-radius: 0;
  }

  .search-input {
    font-size: 16px;
    padding: 0 12px;
  }

  .search-submit {
    width: 54px;
    padding: 0;
    font-size: 0;
    position: relative;
    background: #3665f3;
  }

  .search-submit::before {
    content: "⌕";
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
  }

  .listing-shell {
    padding-top: 0;
    border-top: none;
    background: #fff;
  }

  .listing-grid {
    gap: 10px;
  }

  .gallery-split {
    display: block;
  }

  .thumb-col {
    display: none;
  }

  .hero-frame {
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: 360px;
    background: #f1f1f1;
    box-shadow: none;
  }

  .hero-frame img {
    width: 100%;
    max-height: none;
    height: 360px;
    object-fit: contain;
  }

  .photo-count-badge {
    display: inline-flex;
    align-items: center;
  }

  .mobile-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 4px;
  }

  .mobile-gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4c4c4;
  }

  .mobile-gallery-dots .dot.is-active {
    background: #111;
  }

  .gal-prev,
  .gal-next,
  .gal-zoom {
    display: none;
  }

  .watch-pill-floating {
    top: auto;
    bottom: 10px;
    right: 14px;
    border: 1px solid #d3d3d3;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
  }

  .watch-pill-floating .h {
    font-size: 16px;
    vertical-align: middle;
  }

  .badge-hot {
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .col-main {
    padding: 0 2px;
  }

  .vi-title {
    font-size: 29px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .seller-chip {
    border: none;
    box-shadow: none;
    padding: 0 0 8px;
    margin-bottom: 10px;
    grid-template-columns: 44px 1fr auto;
  }

  .sc-av {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .sc-mini,
  .sc-go {
    display: none;
  }

  .pb-price {
    font-size: 2.5rem;
  }

  .pb-note {
    font-size: 15px;
    margin-top: 6px;
  }

  .condition-line,
  .qty-line {
    border-top: 1px solid #efefef;
    padding-top: 10px;
    margin-top: 8px;
  }

  .cta-stack {
    gap: 12px;
  }

  .btn-solid,
  .btn-outline {
    min-height: 56px;
    border-radius: 999px;
    font-size: 20px;
  }

  .btn-outline {
    border-width: 2px;
  }

  .col-rail {
    position: static;
    order: 4;
    gap: 10px;
  }

  .rail-watch {
    display: none;
  }

  .ship-card-rail,
  .confidence {
    display: block;
  }

  .mobile-shipping {
    display: block;
  }

  .desktop-shipping {
    display: none;
  }

  .ship-card-rail {
    border-radius: 10px;
    box-shadow: none;
  }

  .rail-h {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .urgency {
    border-radius: 14px;
    padding: 14px 16px;
    background: #f5f5f5;
    border: none;
    box-shadow: none;
    font-size: 15px;
  }

  .about-wrap {
    padding-top: 12px;
  }

  .about-tabs {
    margin-top: 6px;
  }

  .about-tab {
    font-size: 14px;
  }

  .about-h2 {
    font-size: 32px;
  }

  .desc-shell {
    border: none;
    padding: 0;
    background: transparent;
  }

  .desc-browser {
    display: none;
  }

  .trust-wide,
  .legal-stack,
  .site-footer {
    display: none;
  }
}
