/* =============================================================
   Sitefy Marketplace — Professional UI Stylesheet v2
   Color palette: #00334e | #00b67a | #005f73 | #16d6c7 | #ff7a18
   ============================================================= */

/* ── RESET / BASE ── */
.sitefy-mp-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #1a2b38;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sitefy-mp-wrap *, .sitefy-mp-wrap *::before, .sitefy-mp-wrap *::after { box-sizing: border-box; }
.sitefy-mp-wrap a { text-decoration: none; }
.sitefy-mp-wrap h1, .sitefy-mp-wrap h2, .sitefy-mp-wrap h3 { line-height: 1.2; }
.sitefy-mp-wrap p { margin: 0; }
.sitefy-mp-wrap img { max-width: 100%; display: block; }

.smp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTIONS ── */
.smp-section { padding: 80px 0; }
.smp-section-teal   { background: #f0f9f7; }
.smp-section-white  { background: #ffffff; }
.smp-section-alt    { background: #f7f8fa; }

/* ── SECTION HEADERS ── */
.smp-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.smp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.smp-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.smp-label-green { background: #e6f9f1; color: #00824f; }
.smp-label-dark  { background: #e6ecf0; color: #00334e; }

.smp-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #00334e;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.smp-section-sub {
  font-size: 16px;
  color: #5a6e7a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   HERO
   =================================================== */
.smp-hero {
  position: relative;
  padding: 88px 0 80px;
  background: linear-gradient(135deg, #001e30 0%, #00334e 50%, #005f73 100%);
  overflow: hidden;
  border-bottom: 3px solid #00b67a;
}

.smp-hero-glow {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,214,199,.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}

.smp-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.smp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
}

.smp-hero-left {}

.smp-eyebrow {
  display: inline-block;
  background: rgba(0,182,122,.18);
  color: #4dffc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,182,122,.3);
  margin-bottom: 24px;
}

.smp-hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  line-height: 1.08;
}

.smp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 36px;
}

.smp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO STATS CARDS (right column) */
.smp-hero-right {
  flex-shrink: 0;
}

.smp-hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.smp-hstat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}

.smp-hstat:nth-child(1) { border-top: 2px solid #00b67a; }
.smp-hstat:nth-child(2) { border-top: 2px solid #16d6c7; }
.smp-hstat:nth-child(3) { border-top: 2px solid #ff7a18; }
.smp-hstat:nth-child(4) { border-top: 2px solid #005f73; }

.smp-hstat-num {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.smp-hstat-label {
  font-size: 12px;
  color: rgba(255,255,255,.52);
  font-weight: 500;
  line-height: 1.4;
}

/* ===================================================
   BUTTONS
   =================================================== */
.smp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.smp-btn-primary {
  background: #00b67a;
  color: #ffffff;
  border-color: #00b67a;
}
.smp-btn-primary:hover {
  background: #009f6a;
  border-color: #009f6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,182,122,.35);
  color: #fff;
}
.smp-btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.35);
}
.smp-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  transform: translateY(-2px);
}
.smp-btn-sell {
  background: #ffffff;
  color: #00334e;
  border-color: #ffffff;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 14px;
}
.smp-btn-sell:hover {
  background: #f0fdf8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  color: #00334e;
}

/* ===================================================
   FILTER BAR
   =================================================== */
.smp-filters-wrap {
  background: #ffffff;
  border-bottom: 1px solid #e8eff2;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,51,78,.06);
}

.smp-filter-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.smp-filter-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #00334e;
  white-space: nowrap;
  padding-right: 4px;
  border-right: 2px solid #e0eaee;
  height: 36px;
  margin-right: 4px;
}
.smp-filter-label svg { color: #00b67a; }

.smp-filter-controls {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.smp-filter-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 130px;
}

.smp-filter-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8aa0ab;
}

.smp-filter {
  padding: 9px 12px;
  border-radius: 9px;
  border: 1.5px solid #dde8ec;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  background: #f7fbfc;
  color: #1a2b38;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2300334e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.smp-filter:focus {
  outline: none;
  border-color: #00b67a;
  background-color: #fff;
}
.smp-filter.smp-filter-active {
  border-color: #00b67a;
  background-color: #f0fdf8;
  color: #00824f;
  font-weight: 600;
}

.smp-filter-reset {
  display: none;
  align-items: center;
  gap: 5px;
  background: #fff0f0;
  color: #c0392b;
  border: 1.5px solid #fdd;
  border-radius: 9px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.smp-filter-reset:hover { background: #ffe5e5; }
.smp-filter-reset.smp-reset-visible { display: flex; }

/* ===================================================
   GRID
   =================================================== */
.smp-grid { display: grid; gap: 24px; }
.smp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.smp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.smp-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===================================================
   CARDS — SHARED
   =================================================== */
.smp-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.smp-card:hover {
  transform: translateY(-5px);
}

/* CARD MEDIA */
.smp-card-media-link { display: block; }

.smp-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.smp-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.3) 100%);
  pointer-events: none;
}
.smp-card-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.smp-card:hover .smp-card-img-el { transform: scale(1.04); }

/* CARD BADGES */
.smp-card-badge-tl {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.smp-badge-sitefy {
  background: rgba(0,182,122,.9);
  color: #fff;
}
.smp-badge-seller {
  background: rgba(255,122,24,.92);
  color: #fff;
}
.smp-badge-verified {
  background: rgba(22,214,199,.92);
  color: #00334e;
}
.smp-badge-quick {
  background: rgba(0,51,78,.9);
  color: #fff;
}

/* PRICE BUBBLE */
.smp-price-bubble {
  position: absolute;
  bottom: -1px;
  right: 18px;
  background: #ffffff;
  color: #00334e;
  font-size: 20px;
  font-weight: 800;
  padding: 8px 18px 10px;
  border-radius: 14px 14px 0 0;
  line-height: 1;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  z-index: 3;
  letter-spacing: -.02em;
}

/* CARD BODY */
.smp-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

/* Taxonomy / type chips */
.smp-card-taxonomy {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 4px;
}
.smp-tax-chip {
  font-size: 11px;
  font-weight: 600;
  color: #005f73;
  background: #e8f7f5;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.smp-tax-niche {
  color: #7a5500;
  background: #fef6e4;
}

/* Sitefy card chips (status/type) */
.smp-card-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}
.smp-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.smp-chip-status { background: #e6f9f1; color: #00824f; }
.smp-chip-type   { background: #e8f7f5; color: #005f73; }

.smp-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #00334e;
  margin: 0 0 8px;
  line-height: 1.3;
}
.smp-card-title a { color: inherit; }
.smp-card-title a:hover { color: #00b67a; }

.smp-card-seller {
  display: block;
  font-size: 11.5px;
  color: #8aa0ab;
  font-weight: 500;
  margin: -4px 0 10px;
  width: fit-content;
  cursor: pointer;
}
.smp-card-seller:hover { color: #00b67a; text-decoration: underline; }

.smp-card-desc {
  font-size: 13.5px;
  color: #5a6e7a;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

/* METRICS STRIP */
.smp-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8eff2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.smp-metric {
  background: #f7fbfc;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.smp-metric-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #8aa0ab;
}
.smp-metric-val {
  font-size: 11.5px;
  font-weight: 700;
  color: #00334e;
  line-height: 1.4;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* DUE DILIGENCE NOTE */
.smp-dd-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #7a5500;
  background: #fef9ec;
  border: 1px solid #fde9a0;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.smp-dd-note svg { flex-shrink: 0; margin-top: 1px; color: #c9900a; }

/* CARD FOOTER / CTA */
.smp-card-footer { margin-top: auto; }

.smp-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s ease;
}
.smp-cta-green {
  background: #00b67a;
  color: #fff;
}
.smp-cta-green:hover {
  background: #009f6a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,182,122,.3);
}
.smp-cta-dark {
  background: #00334e;
  color: #fff;
}
.smp-cta-dark:hover {
  background: #00263b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,51,78,.25);
}
.smp-cta-disabled {
  background: #9dadb5;
  color: #fff;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── SITEFY CARD SPECIFICS ── */
.smp-card-sitefy {
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,51,78,.06), 0 8px 32px rgba(0,51,78,.08);
  border-top: 3px solid #00b67a;
}
.smp-card-sitefy:hover {
  box-shadow: 0 4px 16px rgba(0,51,78,.08), 0 20px 48px rgba(0,51,78,.12);
}

/* ── MARKETPLACE CARD SPECIFICS ── */
.smp-card-mp {
  border: 1.5px solid #e2ecef;
  box-shadow: 0 2px 8px rgba(0,51,78,.04);
  border-top: 3px solid #00334e;
}
.smp-card-mp:hover {
  box-shadow: 0 4px 16px rgba(0,51,78,.08), 0 16px 40px rgba(0,51,78,.1);
  border-color: #c4d4da;
}

/* ── SOLD CARD ── */
.smp-card-sold { position: relative; }

.smp-sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 32, .62);
  border-radius: inherit;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smp-sold-stamp {
  background: #dc2626;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .15em;
  padding: 10px 26px;
  border-radius: 10px;
  transform: rotate(-14deg);
  box-shadow: 0 4px 20px rgba(220,38,38,.5);
  border: 3px solid rgba(255,255,255,.4);
}

/* ===================================================
   LOADING / EMPTY
   =================================================== */
.smp-spinner-wrap {
  text-align: center;
  padding: 60px 0;
}
.smp-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #dde8ec;
  border-top-color: #00b67a;
  border-radius: 50%;
  animation: smp-spin .75s linear infinite;
  margin: 0 auto;
}
@keyframes smp-spin { to { transform: rotate(360deg); } }

.smp-empty-state {
  text-align: center;
  padding: 60px 20px;
}
.smp-empty-icon { margin-bottom: 16px; }
.smp-empty-state p {
  font-size: 16px;
  color: #5a6e7a;
  margin-bottom: 20px;
}
.smp-reset-filters, .smp-filter-reset {
  background: #00334e;
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}
.smp-reset-filters:hover { background: #00263b; }

.smp-empty-notice {
  text-align: center;
  padding: 40px;
  color: #5a6e7a;
  background: rgba(255,255,255,.6);
  border-radius: 14px;
  border: 1.5px dashed #ccdde2;
}

/* ===================================================
   WHY BUY
   =================================================== */
.smp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.smp-why-card {
  background: #ffffff;
  border: 1.5px solid #e8eff2;
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.smp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,51,78,.1);
}
.smp-why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.smp-why-icon svg { width: 22px; height: 22px; }
.smp-why-icon-green  { background: #e6f9f1; color: #00824f; }
.smp-why-icon-teal   { background: #e0f5f5; color: #005f73; }
.smp-why-icon-orange { background: #fff0e5; color: #c0530a; }

.smp-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #00334e;
  margin: 0 0 10px;
}
.smp-why-card p {
  font-size: 14px;
  color: #5a6e7a;
  line-height: 1.65;
}

/* ===================================================
   SELL CTA
   =================================================== */
.smp-sell-cta {
  background: linear-gradient(135deg, #00263b 0%, #005f73 60%, #007a6e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.smp-sell-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.smp-sell-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
.smp-sell-text { flex: 1; }
.smp-eyebrow-light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.2);
}
.smp-sell-cta h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.02em;
  margin: 14px 0 16px;
}
.smp-sell-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 520px;
}
.smp-sell-action {
  flex-shrink: 0;
  text-align: center;
}
.smp-sell-note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  font-weight: 500;
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.smp-faq-container { max-width: 820px; }

.smp-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #e2ecef;
  border-radius: 18px;
  overflow: hidden;
}

.smp-faq-item {
  border-bottom: 1.5px solid #e2ecef;
}
.smp-faq-item:last-child { border-bottom: none; }

.smp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #00334e;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}
.smp-faq-q:hover { background: #f7fbfc; }
.smp-faq-q[aria-expanded="true"] {
  background: #f0f9f7;
  color: #00824f;
}

.smp-faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8eff2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, background .15s;
}
.smp-faq-q[aria-expanded="true"] .smp-faq-icon {
  transform: rotate(180deg);
  background: #e0f5ef;
  color: #00824f;
}
.smp-faq-icon svg { color: #00334e; }
.smp-faq-q[aria-expanded="true"] .smp-faq-icon svg { color: #00824f; }

.smp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
}
.smp-faq-a.smp-faq-open {
  max-height: 400px;
}
.smp-faq-a p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: #5a6e7a;
  line-height: 1.75;
  border-top: 1px solid #eef4f6;
  padding-top: 16px;
}

/* ===================================================
   SUBMISSION FORM
   =================================================== */
.smp-submit-section {
  padding: 56px 0 72px;
  background: #f7f8fa;
}

.smp-submit-header {
  text-align: center;
  margin-bottom: 34px;
}
.smp-submit-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #00334e;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.smp-submit-header p {
  font-size: 16px;
  color: #5a6e7a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.smp-submit-form {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid #e2ecef;
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: 0 4px 32px rgba(0,51,78,.07);
}

.smp-form-section {
  margin-bottom: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid #e6eef1;
}
.smp-form-section:last-of-type { border-bottom: none; padding-bottom: 8px; }

.smp-form-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.smp-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #00334e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.smp-form-section h3 {
  font-size: 20px;
  font-weight: 800;
  color: #00334e;
  margin: 3px 0 0;
  padding: 0;
  border: none;
  letter-spacing: -.01em;
}
.smp-form-section-sub {
  font-size: 14px;
  color: #5d7684;
  margin: 5px 0 0;
  line-height: 1.6;
}

/* Trust strip */
.smp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e6eef1;
}
.smp-trust {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13px;
  color: #5d7684;
  line-height: 1.5;
}
.smp-trust-ico { font-size: 17px; line-height: 1.2; flex-shrink: 0; }
.smp-trust strong { display: block; color: #00334e; font-size: 13.5px; margin-bottom: 2px; }

/* 12-column grid so fields size to their content type */
.smp-form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px 20px;
}
.smp-span-4  { grid-column: span 4; }
.smp-span-6  { grid-column: span 6; }
.smp-span-8  { grid-column: span 8; }
.smp-span-12 { grid-column: span 12; }
.smp-field-middle { justify-content: flex-end; padding-bottom: 11px; }

/* Retained for older markup */
.smp-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.smp-col-full { grid-column: 1 / -1; }

.smp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.smp-form-field label {
  font-size: 14px;
  font-weight: 700;
  color: #00334e;
  letter-spacing: .01em;
}
.smp-form-field .req { color: #d92d20; margin-left: 1px; }
.smp-form-field .smp-optional {
  font-weight: 500;
  color: #7d94a1;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-left: 4px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.smp-form-field input,
.smp-form-field select,
.smp-form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid #c8d8de;
  border-radius: 11px;
  font-family: inherit;
  font-size: 15.5px;
  background: #fff;
  color: #14252f;
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
}

/* Themes commonly cap number inputs for WooCommerce quantity boxes —
   OceanWP ships `form input[type="number"] { max-width: 50px }`, which
   outranks a single-class selector and shrank the Asking Price field to
   50px. Restate the sizing with enough specificity to win, and give every
   control the same comfortable height. */
.smp-submit-form .smp-form-field input[type="text"],
.smp-submit-form .smp-form-field input[type="number"],
.smp-submit-form .smp-form-field input[type="email"],
.smp-submit-form .smp-form-field input[type="url"],
.smp-submit-form .smp-form-field input[type="tel"],
.smp-submit-form .smp-form-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 48px;
  box-sizing: border-box;
}

.smp-form-field input:focus,
.smp-form-field select:focus,
.smp-form-field textarea:focus {
  outline: none;
  border-color: #00b67a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,182,122,.16);
}
.smp-form-field input::placeholder,
.smp-form-field textarea::placeholder { color: #9fb4bf; }
.smp-form-field textarea { resize: vertical; min-height: 168px; line-height: 1.7; }
.smp-form-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235d7684' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }

/* Inline validation */
.smp-form-field.is-invalid input,
.smp-form-field.is-invalid select,
.smp-form-field.is-invalid textarea,
.smp-form-terms.is-invalid { border-color: #d92d20; background: #fffbfa; }
.smp-form-field.is-invalid input:focus,
.smp-form-field.is-invalid select:focus,
.smp-form-field.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(217,45,32,.14); }
.smp-err { display: none; font-size: 13px; color: #b42318; font-weight: 500; margin: 0; }
.smp-form-field.is-invalid .smp-err,
.smp-form-terms.is-invalid .smp-err { display: block; }

/* Money + suffix inputs */
.smp-input-money, .smp-input-suffix { position: relative; display: block; width: 100%; }
.smp-input-money-symbol {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 15.5px; font-weight: 700; color: #5d7684; pointer-events: none; line-height: 1;
}
.smp-submit-form .smp-form-field .smp-price-input { padding-left: 36px; font-weight: 700; }
.smp-input-suffix-text {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: #7d94a1; pointer-events: none; line-height: 1;
}
.smp-submit-form .smp-form-field .smp-input-suffix input { padding-right: 108px; }
.smp-price-input::-webkit-outer-spin-button,
.smp-price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.smp-age-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Checkbox grid for "what's included" */
.smp-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 10px 18px;
  background: #f7fafb;
  border: 1px solid #e2ecef;
  border-radius: 12px;
  padding: 16px 18px;
}
.smp-checkbox-inline { padding: 0; }

.smp-current-image {
  display: flex; align-items: center; gap: 11px;
  font-size: 13px; color: #5d7684;
  background: #f4f9fa; border: 1px solid #e2ecef; border-radius: 10px; padding: 10px 13px;
}
.smp-current-image img { border-radius: 7px; display: block; flex-shrink: 0; }

/* Drag & drop upload */
.smp-drop {
  position: relative;
  border: 2px dashed #c8d8de;
  border-radius: 14px;
  background: #f9fbfc;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.smp-drop:hover, .smp-drop:focus-visible { border-color: #00b67a; background: #f4fcf9; outline: none; }
.smp-drop.is-drag { border-color: #00b67a; background: #eefaf5; }
.smp-drop.is-invalid { border-color: #d92d20; background: #fffbfa; }
.smp-drop-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.smp-drop-ico { color: #7d94a1; display: block; margin-bottom: 8px; }
.smp-drop-ico svg { margin: 0 auto; display: block; }
.smp-drop-title { font-size: 14.5px; font-weight: 600; color: #34505f; margin: 0 0 4px; }
.smp-drop-title span { color: #00a06a; text-decoration: underline; }
.smp-drop-meta { font-size: 12.5px; color: #7d94a1; margin: 0; }

.smp-drop-preview { display: flex; align-items: center; gap: 14px; text-align: left; }
.smp-drop-thumb { width: 56px; height: 56px; border-radius: 9px; object-fit: cover; flex-shrink: 0; background: #e8eff2; }
.smp-drop-info { flex: 1; min-width: 0; }
.smp-drop-name { display: block; font-size: 14px; font-weight: 600; color: #14252f; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.smp-drop-size { display: block; font-size: 12.5px; color: #7d94a1; margin-top: 2px; }
.smp-drop-bar { height: 4px; border-radius: 999px; background: #e2ecef; margin-top: 8px; overflow: hidden; }
.smp-drop-bar i { display: block; height: 100%; width: 0; background: #00b67a; border-radius: 999px; transition: width .25s; }
.smp-drop-actions { display: flex; gap: 8px; flex-shrink: 0; position: relative; z-index: 2; }
.smp-drop-actions button {
  font-family: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  padding: 7px 13px; border-radius: 8px; border: 1.5px solid #c8d8de; background: #fff; color: #34505f;
}
.smp-drop-actions button:hover { border-color: #00b67a; color: #00834a; }
.smp-drop-actions .smp-drop-remove:hover { border-color: #d92d20; color: #b42318; }

.smp-desc-foot { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.smp-counter { font-size: 12.5px; color: #7d94a1; font-variant-numeric: tabular-nums; white-space: nowrap; }
.smp-counter.is-low { color: #b54708; font-weight: 600; }
.smp-counter.is-over { color: #b42318; font-weight: 700; }

.smp-field-hint { font-size: 13px; color: #5d7684; line-height: 1.6; margin: 0; }
.smp-field-hint code { background: #eef4f6; padding: 1px 6px; border-radius: 4px; font-size: 12px; }

.smp-form-terms {
  background: #f7fafb;
  border: 1.5px solid #e2ecef;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 6px;
}
.smp-terms-links { font-size: 12.5px; color: #7d94a1; margin: 10px 0 0; padding-left: 31px; }
.smp-terms-links a { color: #00a06a; text-decoration: underline; }

.smp-submit-note {
  font-size: 13px; color: #5d7684; text-align: center; margin: 14px 0 0; line-height: 1.6;
}

/* Honeypot — hidden from people, reachable by bots */
.smp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.smp-checkbox-label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #34505f;
  cursor: pointer;
  line-height: 1.6;
}
.smp-checkbox-label input[type="checkbox"] {
  width: 20px; height: 20px;
  /* Nudge onto the first line of the label rather than the middle of it. */
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: #00b67a;
  cursor: pointer;
}
.smp-checkbox-label input[type="checkbox"]:focus-visible {
  outline: 2px solid #00b67a;
  outline-offset: 2px;
}

.smp-submit-btn {
  display: block;
  width: 100%;
  padding: 17px;
  min-height: 56px;
  background: #00b67a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 28px;
  font-family: inherit;
  transition: background .15s, box-shadow .15s;
}
.smp-submit-btn:hover { background: #009f6a; box-shadow: 0 4px 20px rgba(0,182,122,.3); }
.smp-submit-btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.smp-submit-btn:focus-visible { outline: 3px solid rgba(0,182,122,.45); outline-offset: 2px; }

.smp-notice {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14.5px;
  line-height: 1.6;
}
.smp-notice-success { background: #e6f9f1; color: #00622e; border: 1.5px solid #a3e6c8; }
.smp-notice-error   { background: #fef2f2; color: #991b1b; border: 1.5px solid #fca5a5; }

/* ===================================================
   SINGLE LISTING PAGE
   =================================================== */
.smp-single-wrap { padding: 40px 0 80px; }

.smp-single-sold-alert {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.smp-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.smp-single-breadcrumb a {
  font-size: 14px;
  color: #00b67a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.smp-single-breadcrumb a:hover { color: #009f6a; }

.smp-single-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.smp-single-badges .smp-card-badge-tl {
  position: static;
  transform: none;
}

.smp-single-title {
  font-size: 32px;
  font-weight: 800;
  color: #00334e;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}

.smp-single-hero-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 32px;
}
.smp-single-hero-img img { width: 100%; height: auto; }

.smp-single-hero-gradient {
  height: 240px;
  border-radius: 18px;
  margin-bottom: 32px;
}

.smp-single-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #00334e;
  margin: 0 0 16px;
}
.smp-single-body p, .smp-single-body li {
  font-size: 15px;
  color: #3a5060;
  line-height: 1.8;
  margin-bottom: 12px;
}

.smp-single-dd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fef9ec;
  border: 1.5px solid #fde9a0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 28px;
  font-size: 13.5px;
  color: #7a5500;
  line-height: 1.6;
}
.smp-single-dd svg { flex-shrink: 0; margin-top: 2px; color: #c9900a; }

/* SIDEBAR */
.smp-sidebar-card {
  background: #fff;
  border: 1.5px solid #e2ecef;
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 24px rgba(0,51,78,.07);
}

.smp-sidebar-price-block {
  border-bottom: 1.5px solid #e8eff2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.smp-sidebar-price-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8aa0ab;
  margin-bottom: 6px;
}
.smp-sidebar-price {
  font-size: 42px;
  font-weight: 900;
  color: #00334e;
  letter-spacing: -.03em;
  line-height: 1;
}

.smp-sidebar-metrics { margin-bottom: 20px; }
.smp-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #f0f5f7;
}
.smp-sidebar-row:last-child { border-bottom: none; }
.smp-sidebar-row-label { font-size: 13px; color: #8aa0ab; font-weight: 500; }
.smp-sidebar-row-val   { font-size: 14px; color: #00334e; font-weight: 700; text-align: right; max-width: 60%; }
.smp-sidebar-link { color: #00b67a; }
.smp-sidebar-link:hover { color: #009f6a; }

.smp-sidebar-seller {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 20px;
  border-bottom: 1px solid #f0f5f7;
  margin-bottom: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
}
.smp-sidebar-seller:hover { background: #f8fbfc; }
.smp-sidebar-seller-avatar { border-radius: 50%; flex-shrink: 0; }
.smp-sidebar-seller-info { display: flex; flex-direction: column; gap: 1px; }
.smp-sidebar-seller-label { font-size: 11px; color: #8aa0ab; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.smp-sidebar-seller-name { font-size: 14px; color: #00334e; font-weight: 700; }

.smp-sidebar-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }

.smp-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all .18s;
  line-height: 1;
}
.smp-sidebar-cta.smp-cta-green  { background: #00b67a; color: #fff; }
.smp-sidebar-cta.smp-cta-green:hover { background: #009f6a; box-shadow: 0 4px 20px rgba(0,182,122,.3); }
.smp-sidebar-cta.smp-cta-offer  { background: #00334e; color: #fff; }
.smp-sidebar-cta.smp-cta-offer:hover { background: #004468; }
.smp-sidebar-cta.smp-cta-watch  { background: #f0f5f8; color: #2a4a5a; border: 1.5px solid #d0e0e8; }
.smp-sidebar-cta.smp-cta-watch:hover { background: #e6eff4; }
.smp-sidebar-cta.smp-cta-watch.smp-watching { background: #fff0e6; color: #b85400; border-color: #ffcca0; }
.smp-sidebar-cta.smp-cta-sold   { background: #9dadb5; color: #fff; cursor: default; }

.smp-sidebar-own-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f9f7;
  border: 1.5px solid #b0e8d4;
  color: #00834a;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.smp-sidebar-accepted-offer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0faf5;
  border: 1.5px solid #5ecb9e;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.smp-sidebar-accepted-offer svg {
  flex-shrink: 0;
  color: #00834a;
  margin-top: 2px;
}
.smp-sidebar-accepted-offer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #00834a;
  margin-bottom: 2px;
}
.smp-sidebar-accepted-offer span {
  font-size: 13px;
  color: #2a5a3c;
}

.smp-watch-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: rgba(0,0,0,.12);
  border-radius: 999px;
  font-size: 11px;
  padding: 0 5px;
  margin-left: 4px;
}

/* Card watch button */
.smp-card-footer {
  position: relative;
}
.smp-card-watch-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #f0f5f8;
  border: 1.5px solid #e0eaee;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: #7a9aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
  line-height: 0;
}
.smp-card-watch-btn:hover { background: #fff0e6; color: #ff7a18; border-color: #ffcca0; }
.smp-card-watch-btn.smp-watching { color: #ff7a18; background: #fff0e6; border-color: #ffcca0; }
.smp-card-cta { margin-right: 44px; }

.smp-sidebar-trust {
  font-size: 12px;
  color: #8aa0ab;
  text-align: center;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid #f0f5f7;
}

.smp-sidebar-sell-nudge {
  margin-top: 16px;
  text-align: center;
  padding: 16px;
  background: #f7fbfc;
  border-radius: 14px;
  border: 1.5px solid #e2ecef;
}
.smp-sidebar-sell-nudge p { font-size: 13px; color: #5a6e7a; margin-bottom: 6px; }
.smp-sidebar-sell-nudge a { font-size: 13px; font-weight: 700; color: #00b67a; }
.smp-sidebar-sell-nudge a:hover { color: #009f6a; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .smp-grid-3   { grid-template-columns: repeat(2, 1fr); }
  .smp-grid-4   { grid-template-columns: repeat(2, 1fr); }
  .smp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .smp-sell-inner { flex-direction: column; gap: 32px; text-align: center; }
  .smp-sell-cta p { margin: 0 auto; }
  .smp-single-layout { grid-template-columns: 1fr; }
  .smp-sidebar-card { position: static; }
  .smp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .smp-hero-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .smp-hstat { padding: 16px 18px; }
  .smp-hero-title { font-size: 42px; }
  .smp-filter-controls { gap: 8px; }
}

@media (max-width: 768px) {
  .smp-section { padding: 60px 0; }
  .smp-hero { padding: 60px 0 52px; }
  .smp-hero-title { font-size: 34px; }
  .smp-hero-sub { font-size: 16px; }
  .smp-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .smp-hstat { padding: 16px 18px; }
  .smp-section-title { font-size: 28px; }
  .smp-filter-panel { flex-direction: column; align-items: stretch; padding: 12px 0; }
  .smp-filter-label { border-right: none; border-bottom: 1px solid #e0eaee; height: auto; padding-bottom: 10px; margin-bottom: 4px; margin-right: 0; }
  .smp-filter-controls { grid-template-columns: 1fr 1fr; display: grid; }
  .smp-filter-group { min-width: unset; }
  .smp-form-grid-2 { grid-template-columns: 1fr; }
  .smp-form-grid { gap: 18px; }
  .smp-span-4, .smp-span-6, .smp-span-8 { grid-column: span 12; }
  .smp-submit-form { padding: 26px 20px; border-radius: 18px; }
  .smp-submit-section { padding: 30px 0 48px; }
  .smp-submit-header h2 { font-size: 27px; }
  .smp-trust-row { grid-template-columns: 1fr; gap: 12px; }
  .smp-field-middle { padding-bottom: 0; }
  .smp-check-grid { grid-template-columns: 1fr; padding: 14px; }
  .smp-drop-preview { flex-wrap: wrap; }
  .smp-drop-actions { width: 100%; }
  .smp-drop-actions button { flex: 1; }
  .smp-terms-links { padding-left: 0; }
  .smp-sell-cta { padding: 60px 0; }
  .smp-sell-cta h2 { font-size: 26px; }
  .smp-hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .smp-grid-2   { grid-template-columns: 1fr; }
  .smp-grid-3   { grid-template-columns: 1fr; }
  .smp-grid-4   { grid-template-columns: 1fr; }
  .smp-why-grid { grid-template-columns: 1fr; }
  .smp-filter-controls { grid-template-columns: 1fr; }
  .smp-hero-title { font-size: 28px; }
  .smp-hstat-num { font-size: 22px; }
  .smp-card-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ── WOO ARCHIVE INJECT ── */
.smp-woo-inject {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 2px solid #e6ecf0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.smp-woo-inject *,
.smp-woo-inject *::before,
.smp-woo-inject *::after { box-sizing: border-box; }

.smp-woo-inject-head {
  text-align: center;
  margin-bottom: 48px;
}

.smp-woo-inject-head .smp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.smp-woo-inject-title {
  font-size: 30px;
  font-weight: 800;
  color: #00334e;
  margin: 0 0 10px;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.smp-woo-inject-sub {
  font-size: 15px;
  color: #5a7a8a;
  margin: 0;
}

/* Ensure cards inside inject inherit our font & reset */
.smp-woo-inject .smp-card { font-family: inherit; }
.smp-woo-inject a { text-decoration: none; }
.smp-woo-inject img { max-width: 100%; display: block; }

@media (max-width: 768px) {
  .smp-woo-inject { margin-top: 40px; padding-top: 40px; }
  .smp-woo-inject-title { font-size: 24px; }
}

/* ===================================================
   SINGLE LISTING — BUSINESS DETAILS & INCLUSIONS
   =================================================== */
.smp-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: #e6eef1;
  border: 1px solid #e6eef1;
  border-radius: 12px;
  overflow: hidden;
}
.smp-fact { background: #fff; padding: 14px 16px; }
.smp-fact-l {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #7d94a1;
  margin-bottom: 4px;
}
.smp-fact-v { display: block; font-size: 15.5px; font-weight: 700; color: #00334e; }

.smp-included {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 9px 20px;
}
.smp-included li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: #34505f;
}
.smp-included svg { color: #00b67a; flex-shrink: 0; }

@media (max-width: 560px) {
  .smp-facts { grid-template-columns: 1fr; }
  .smp-included { grid-template-columns: 1fr; }
}

/* ===================================================
   SUBMISSION GATE (signed out / not a seller yet)
   =================================================== */
.smp-gate {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid #e2ecef;
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(0,51,78,.07);
}
.smp-gate-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef7f4;
  color: #00a06a;
  margin-bottom: 18px;
}
.smp-gate h2 {
  font-size: 24px;
  font-weight: 800;
  color: #00334e;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.smp-gate p {
  font-size: 15px;
  color: #5d7684;
  line-height: 1.65;
  margin: 0 auto 24px;
  max-width: 420px;
}
.smp-gate-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.smp-btn-outline-dark {
  background: #fff;
  color: #00334e;
  border-color: #c8d8de;
}
.smp-btn-outline-dark:hover {
  background: #f4f9fa;
  border-color: #00334e;
  color: #00334e;
}
@media (max-width: 560px) {
  .smp-gate { padding: 32px 22px; border-radius: 16px; }
  .smp-gate-actions { flex-direction: column; }
  .smp-gate-actions .smp-btn { width: 100%; justify-content: center; }
}

/* Themes underline links inside post/page content with high-specificity
   selectors (OceanWP targets `.entry-content a:not(...)`), which beats our
   plain `.smp-btn` rule and put an underline through button labels.
   Buttons are never underlined; genuine text links keep theirs. */
.sitefy-mp-wrap a.smp-btn,
.sitefy-mp-wrap a.smp-btn:hover,
.sitefy-mp-wrap a.smp-btn:focus,
.sitefy-mp-wrap .smp-submit-btn,
.sitefy-mp-wrap .smp-card,
.sitefy-mp-wrap .smp-card a,
.sitefy-mp-wrap .smp-card a:hover {
  text-decoration: none !important;
}
/* Links that should stay underlined, restated so the reset above can't win. */
.sitefy-mp-wrap .smp-terms-links a,
.sitefy-mp-wrap .smp-field-hint a {
  text-decoration: underline !important;
}

/* ===================================================
   MOBILE PASS
   Grids, cards, filters, hero, single listing, forms.
   =================================================== */

/* Plugin content must never widen the page. */
.sitefy-mp-wrap { max-width: 100%; overflow-wrap: break-word; }
.sitefy-mp-wrap img { height: auto; }
.sitefy-mp-wrap pre,
.sitefy-mp-wrap table { max-width: 100%; }

@media (max-width: 782px) {
  .smp-container { padding: 0 16px; }
  .smp-section { padding: 44px 0; }

  /* --- Hero --- */
  .smp-hero { padding: 48px 0 44px; }
  .smp-hero-title { font-size: 30px; }
  .smp-hero-sub { font-size: 15.5px; }
  .smp-hero-actions { flex-direction: column; align-items: stretch; }
  .smp-hero-actions .smp-btn { width: 100%; justify-content: center; }
  .smp-hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .smp-hstat { padding: 14px 15px; }
  .smp-hstat-num { font-size: 21px; }

  /* --- Section headings --- */
  .smp-section-title { font-size: 25px; }
  .smp-section-sub { font-size: 15px; }
  .smp-section-head { margin-bottom: 32px; }

  /* --- Filter bar: stop it sticking and eating the screen --- */
  .smp-filters-wrap { position: static; }
  .smp-filter-controls { grid-template-columns: 1fr 1fr; display: grid; gap: 8px; }
  .smp-filter { font-size: 14px; }

  /* --- Cards --- */
  .smp-grid { gap: 16px; }
  .smp-card-title { font-size: 16px; }
  .smp-card-stats { gap: 10px; }

  /* --- Single listing --- */
  .smp-single-title { font-size: 26px; }
  .smp-single-body h2 { font-size: 19px; }
  .smp-single-badges { flex-wrap: wrap; gap: 7px; }
  .smp-sidebar-card { position: static !important; }
  .smp-sidebar-cta { width: 100%; justify-content: center; }

  /* --- Sell / submit form --- */
  .smp-submit-header p { font-size: 15px; }
  .smp-form-section-head { gap: 11px; }
  .smp-form-section h3 { font-size: 18px; }
  .smp-desc-foot { flex-direction: column; align-items: flex-start; gap: 4px; }
  .smp-drop { padding: 22px 16px; }
  .smp-age-pair { grid-template-columns: 1fr 1fr; }

  /* --- Gate screen --- */
  .smp-gate { padding: 30px 20px; }
  .smp-gate h2 { font-size: 21px; }
}

@media (max-width: 480px) {
  .smp-hero-title { font-size: 26px; }
  .smp-hero-stats-grid { grid-template-columns: 1fr; }
  .smp-section-title { font-size: 22px; }
  .smp-filter-controls { grid-template-columns: 1fr; }
  .smp-single-title { font-size: 22px; }
  .smp-submit-header h2 { font-size: 24px; }
  .smp-form-section { margin-bottom: 30px; padding-bottom: 26px; }
  .smp-age-pair { grid-template-columns: 1fr; }
  .smp-trust { font-size: 12.5px; }
}

/* Comfortable tap targets on touch devices. */
@media (max-width: 782px) and (pointer: coarse) {
  .sitefy-mp-wrap .smp-btn,
  .sitefy-mp-wrap .smp-filter,
  .sitefy-mp-wrap .smp-submit-btn { min-height: 46px; }
  .sitefy-mp-wrap .smp-form-field input,
  .sitefy-mp-wrap .smp-form-field select { min-height: 48px; }
  /* iOS zooms the page when a focused input is under 16px. */
  .sitefy-mp-wrap input,
  .sitefy-mp-wrap select,
  .sitefy-mp-wrap textarea { font-size: 16px; }
}

/* ===================================================
   SUBMIT LISTING — STEP WIZARD
   One section at a time, with a progress header, a live
   draft summary, and a review screen before submitting.
   =================================================== */
.smp-wiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}
.smp-wiz-card {
  background: #fff;
  border: 1px solid #dbe5e8;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0, 63, 90, .10);
  overflow: hidden;
}

/* ── Progress header ── */
.smp-wiz-progress {
  padding: 22px 26px 18px;
  border-bottom: 1px solid #dbe5e8;
  background: linear-gradient(180deg, #fff, #fbfdfd);
}
.smp-wiz-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.smp-wiz-progress-title { font-weight: 850; color: #003f5a; }
.smp-wiz-progress-count { font-size: 13px; color: #64757d; }
.smp-wiz-track {
  height: 8px;
  background: #e9eff1;
  border-radius: 999px;
  overflow: hidden;
}
.smp-wiz-bar {
  height: 100%;
  width: 16.666%;
  border-radius: 999px;
  background: linear-gradient(90deg, #17a673, #36bf8d);
  transition: width .3s ease;
}

/* ── Steps ── */
.smp-wiz-step { display: none; padding: 30px 28px 28px; }
.smp-wiz-step.is-active { display: block; animation: smpWizFade .24s ease; }
@keyframes smpWizFade {
  from { opacity: .35; transform: translateY(6px); }
  to   { opacity: 1;   transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .smp-wiz-step.is-active { animation: none; }
  .smp-wiz-bar { transition: none; }
}
.smp-wiz-step .smp-form-section-head { margin-bottom: 25px; }

/* ── Step navigation ── */
.smp-wiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #dbe5e8;
}
.smp-wiz-btn {
  border: 0;
  border-radius: 10px;
  padding: 13px 19px;
  font-weight: 850;
  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  text-decoration: none !important;
  transition: background .18s, transform .18s;
}
.smp-wiz-btn-primary { background: #17a673; color: #fff !important; box-shadow: 0 8px 22px rgba(23, 166, 115, .22); }
.smp-wiz-btn-primary:hover:not([disabled]) { background: #0e845a; color: #fff !important; transform: translateY(-1px); }
.smp-wiz-btn-ghost { background: #eef3f5; color: #003f5a !important; box-shadow: none; }
.smp-wiz-btn-ghost:hover { background: #e4ecef; color: #003f5a !important; }
.smp-wiz-btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

/* Asking price gets its own row, so the negotiable checkbox sits under it. */
.smp-negotiable { margin-top: 12px; }

/* ── Review screen ── */
.smp-wiz-review { display: grid; gap: 14px; }
.smp-wiz-review-section {
  border: 1px solid #dbe5e8;
  border-radius: 13px;
  padding: 17px;
}
.smp-wiz-review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.smp-wiz-review-head h4 { margin: 0; color: #003f5a; font-size: 16px; }
.smp-wiz-edit {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #0e845a;
  cursor: pointer;
  text-decoration: underline;
}
.smp-wiz-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.smp-wiz-review-item small {
  display: block;
  color: #64757d;
  font-size: 11px;
  margin-bottom: 2px;
}
.smp-wiz-review-item div { font-weight: 700; overflow-wrap: anywhere; }
.smp-wiz-review-item.is-wide { grid-column: 1 / -1; }

/* ── Success ── */
.smp-wiz-success { text-align: center; padding: 30px 10px 10px; }
.smp-wiz-success-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eaf8f2;
  color: #17a673;
  font-size: 44px;
  line-height: 88px;
  margin: 0 auto 20px;
}
.smp-wiz-success h3 { font-size: 28px; margin: 0 0 9px; color: #003f5a; }
.smp-wiz-success p { max-width: 560px; margin: 0 auto 22px; color: #64757d; }
.smp-wiz-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Sidebar ── */
.smp-wiz-side { position: sticky; top: 92px; display: grid; gap: 16px; }
.smp-wiz-side-card {
  background: #fff;
  border: 1px solid #dbe5e8;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0, 63, 90, .10);
  padding: 21px;
}
.smp-wiz-side-card h4 { margin: 0 0 14px; color: #003f5a; font-size: 17px; }
.smp-wiz-side-card .smp-trust { display: flex; gap: 11px; margin: 13px 0; }
.smp-wiz-side-card .smp-trust-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eaf8f2;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 15px;
}
.smp-wiz-side-card .smp-trust strong { display: block; color: #003f5a; font-size: 13px; }
.smp-wiz-side-card .smp-trust div { color: #64757d; font-size: 12px; line-height: 1.45; }

.smp-wiz-sum-list { display: grid; gap: 10px; font-size: 13px; }
.smp-wiz-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #eef2f3;
}
.smp-wiz-sum-row:last-child { border: 0; padding: 0; }
.smp-wiz-sum-row span { color: #64757d; }
.smp-wiz-sum-row b {
  color: #003f5a;
  text-align: right;
  max-width: 155px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.smp-wiz-savestate { margin: 14px 0 0; font-size: 12px; color: #64757d; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .smp-wiz-layout { grid-template-columns: 1fr; }
  .smp-wiz-side { position: static; grid-row: 1; }
  .smp-wiz-summary { display: none; }
}
@media (max-width: 620px) {
  .smp-wiz-step { padding: 24px 17px; }
  .smp-wiz-progress { padding: 18px; }
  .smp-wiz-progress-top { flex-direction: column; align-items: flex-start; gap: 4px; }
  .smp-wiz-review-grid { grid-template-columns: 1fr; }
  .smp-wiz-nav { flex-direction: column-reverse; }
  .smp-wiz-nav .smp-wiz-btn { width: 100%; }
  .smp-wiz-side { display: none; }
  .smp-wiz-success-actions .smp-wiz-btn { width: 100%; }
}

/* ===================================================
   WIZARD — CHROME CORRECTIONS
   =================================================== */

/* The form inherits .smp-submit-form, which is itself styled as a card
   (24px radius, its own border, 48px padding, shadow). Inside .smp-wiz-card
   that produced a box within a box with mismatched corners. The wizard card
   owns the chrome now, so strip it from the form. */
.smp-wiz-card .smp-wiz-form,
.smp-wiz-card .smp-submit-form {
  max-width: none;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Controls kept their theme radius (3px) and grey border because our
   single-class rules lose to OceanWP/WooCommerce input selectors — only the
   height rule was specific enough to win. Restate the full box at the same
   specificity so every control matches the design. */
.smp-submit-form .smp-form-field input[type="text"],
.smp-submit-form .smp-form-field input[type="number"],
.smp-submit-form .smp-form-field input[type="email"],
.smp-submit-form .smp-form-field input[type="url"],
.smp-submit-form .smp-form-field input[type="tel"],
.smp-submit-form .smp-form-field input[type="search"],
.smp-submit-form .smp-form-field select,
.smp-submit-form .smp-form-field textarea {
  border: 1px solid #cdd9dd;
  border-radius: 10px;
  background: #fff;
  color: #173847;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  box-shadow: none;
  transition: border-color .18s, box-shadow .18s;
}
.smp-submit-form .smp-form-field textarea {
  height: auto;
  min-height: 190px;
  line-height: 1.6;
}
.smp-submit-form .smp-form-field input[type="text"]:focus,
.smp-submit-form .smp-form-field input[type="number"]:focus,
.smp-submit-form .smp-form-field input[type="email"]:focus,
.smp-submit-form .smp-form-field input[type="url"]:focus,
.smp-submit-form .smp-form-field input[type="tel"]:focus,
.smp-submit-form .smp-form-field select:focus,
.smp-submit-form .smp-form-field textarea:focus {
  outline: none;
  border-color: #17a673;
  box-shadow: 0 0 0 4px rgba(23, 166, 115, .12);
}
/* Invalid state has to restate the border too, or the rule above wins. */
.smp-submit-form .smp-form-field.is-invalid input,
.smp-submit-form .smp-form-field.is-invalid select,
.smp-submit-form .smp-form-field.is-invalid textarea {
  border-color: #c73c3c;
  box-shadow: none;
}

/* Selects need room for the theme's arrow without clipping the corner. */
.smp-submit-form .smp-form-field select { padding-right: 38px; }

/* Wrapped controls: the wrapper is what the eye reads as the field, so its
   corners must match the plain inputs. */
.smp-wiz-card .smp-input-money,
.smp-wiz-card .smp-input-suffix,
.smp-wiz-card .smp-age-pair { border-radius: 10px; }
.smp-wiz-card .smp-drop { border-radius: 14px; }
.smp-wiz-card .smp-check-panel,
.smp-wiz-card .smp-check-grid,
.smp-wiz-card .smp-form-terms,
.smp-wiz-card .smp-current-image { border-radius: 13px; }

/* Progress divider — restate the colour so it can't inherit the theme's. */
.smp-wiz-progress { border-bottom-color: #dbe5e8; }

/* Buttons: themes style every <button> with their own radius/border. */
.smp-wiz-card .smp-wiz-btn,
.smp-wiz-card .smp-wiz-btn:hover,
.smp-wiz-card .smp-wiz-btn:focus {
  border: 0;
  border-radius: 10px;
  outline: none;
}
.smp-wiz-card .smp-wiz-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 166, 115, .45);
}

/* Mobile: the form's card padding is overridden again inside the theme's
   breakpoint, so neutralise it there too. */
@media (max-width: 620px) {
  .smp-wiz-card .smp-wiz-form,
  .smp-wiz-card .smp-submit-form { padding: 0; border-radius: 0; }
  .smp-wiz-card { border-radius: 14px; }
  .smp-wiz-review-section,
  .smp-wiz-card .smp-form-terms { border-radius: 11px; }
}

/* Checkboxes were picking up the text-input radius (11px), which on a 20px
   box reads as a lozenge — and the consent box, sitting outside
   .smp-form-field, got no radius at all. One small radius for all of them. */
.smp-submit-form .smp-checkbox-label input[type="checkbox"],
.smp-submit-form .smp-form-field input[type="checkbox"],
.smp-submit-form .smp-form-terms input[type="checkbox"],
.smp-submit-form .smp-check-grid input[type="checkbox"] {
  border-radius: 5px;
}

/* Keep the panels on one radius scale at phone widths. */
@media (max-width: 620px) {
  .smp-wiz-card .smp-check-grid,
  .smp-wiz-card .smp-check-panel { border-radius: 11px; }
}

/* The padding restated above (0,3,1) outranks the prefix/suffix rules
   (0,3,0), which put the value back underneath the "$" symbol and the
   "visits / month" label. Restate the inset at a higher specificity. */
.smp-submit-form .smp-form-field .smp-input-money input[type="text"],
.smp-submit-form .smp-form-field .smp-input-money input[type="number"] {
  padding-left: 36px;
}
.smp-submit-form .smp-form-field .smp-input-suffix input[type="text"],
.smp-submit-form .smp-form-field .smp-input-suffix input[type="number"] {
  padding-right: 108px;
}
