/* Seller landing — hero + lead form layout (index, bergamo, brescia) */

/* ── Seller form section: city background + aside + floating card (like buyer) ── */
section.hero#contatto.seller-form-section {
  display: block !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 7vw, 92px) 0;
  min-height: auto;
  width: 100%;
  background: #0c2749;
  border-top: 5px solid var(--remax-red, #dc1c2e);
}

section.hero#contatto.seller-form-section::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
    105deg,
    rgba(0, 61, 165, .78) 0%,
    rgba(12, 39, 73, .62) 42%,
    rgba(0, 61, 165, .48) 100%
  ), var(--seller-city-bg, url(/milano.jpg));
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

section.hero#contatto.seller-form-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .08), transparent 36%),
    radial-gradient(circle at 82% 68%, rgba(220, 28, 46, .12), transparent 32%);
  pointer-events: none;
}

.seller-form-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}

.seller-form-aside {
  max-width: 620px;
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.seller-form-aside h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: -.02em;
}

.seller-form-aside > p {
  color: rgba(255, 255, 255, .92);
  margin: 0 0 26px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  max-width: 560px;
}

.seller-form-aside > p strong {
  color: #fff;
}

.seller-form-aside .eyebrow {
  color: rgba(255, 255, 255, .9) !important;
  margin-bottom: 20px;
  font-size: 12px !important;
  letter-spacing: .2em !important;
  display: block !important;
}

/* Una sola riga rossa: sotto l'eyebrow */
.seller-form-aside .eyebrow::before {
  display: block !important;
  content: "" !important;
  width: 40px !important;
  height: 3px !important;
  background: var(--remax-red, #dc1c2e) !important;
  margin-bottom: 14px !important;
}

.seller-form-aside .hero-agent {
  margin-bottom: 22px;
}

.seller-form-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seller-form-benefits li {
  padding-left: 0;
  position: relative;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.45;
}

.seller-form-benefits li::before {
  content: none !important;
  display: none !important;
}

.seller-form-aside .seller-form-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  background: #25d366 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .35);
  width: fit-content;
  max-width: 100%;
}

.seller-form-aside .seller-form-wa:hover {
  background: #1ebe57 !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, .42);
}

.seller-form-aside .seller-form-wa svg {
  flex-shrink: 0;
}

/* Form panel: white card on dark city background */
.hero-form-wrap.seller-form-panel {
  display: block !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  min-height: auto !important;
}

.hero-form-wrap.seller-form-panel::before {
  display: none !important;
}

.form-card.seller-form-card,
.hero-form-wrap.seller-form-panel .form-card {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 0 0 auto !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding: clamp(24px, 2.8vw, 30px) !important;
  box-shadow: 0 20px 52px rgba(0, 0, 0, .34);
  border-top: 5px solid var(--remax-red, #dc1c2e) !important;
}

/* Legacy hero-left (if still present on old markup) */
section.hero#contatto:not(.seller-form-section) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  min-height: auto;
  background: #0c2749;
  width: 100%;
}

/* Blue overlay only on photo side, not the form column */
section.hero#contatto:not(.seller-form-section)::before,
section.hero#contatto:not(.seller-form-section)::after {
  content: none !important;
  display: none !important;
}

.hero-left {
  min-height: min(78vh, 700px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-left::after {
  background: linear-gradient(
    115deg,
    rgba(0, 61, 165, .72) 0%,
    rgba(12, 39, 73, .55) 50%,
    rgba(220, 28, 46, .18) 100%
  ) !important;
}

.hero-left .eyebrow {
  color: rgba(255, 255, 255, .88) !important;
}

.hero-left .eyebrow::before {
  background: var(--remax-red, #dc1c2e) !important;
}

/* ── Form column: compact centered panel (legacy split hero) ── */
.hero-form-wrap:not(.seller-form-panel) {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px) !important;
  background: #fff !important;
  border-left: 5px solid var(--remax-red, #dc1c2e);
  min-height: 100%;
}

.hero-form-wrap:not(.seller-form-panel)::before {
  content: "Consulenza riservata · RE/MAX";
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 61, 165, .08);
  color: var(--remax-blue, #003da5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-card {
  width: 100% !important;
  max-width: 380px !important;
  margin: 0 auto !important;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  border-top: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.form-card::before {
  display: none !important;
}

.form-card h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
  color: var(--remax-blue, #003da5) !important;
}

.form-card > p {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
  color: #555 !important;
}

.form-card label {
  font-size: 10px !important;
  letter-spacing: .08em !important;
  color: var(--remax-blue, #003da5) !important;
  margin-top: 12px !important;
}

.form-card input,
.form-card select,
.form-card textarea {
  min-height: 46px !important;
  border-radius: 8px !important;
  border-color: rgba(0, 61, 165, .18) !important;
  font-size: 14px !important;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--remax-red, #dc1c2e) !important;
  box-shadow: 0 0 0 4px rgba(220, 28, 46, .1) !important;
}

.form-card .btn {
  min-height: 48px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  margin-top: 18px !important;
}

.form-card .microcopy {
  margin-top: 12px !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  color: #5c5c5c !important;
}

.form-card .divider {
  margin: 14px 0 !important;
}

.form-card .step-note {
  font-size: 12px !important;
  margin: 10px 0 2px !important;
}

.fp-dot {
  width: 30px !important;
  height: 30px !important;
  font-size: 12px !important;
}

.fp-line {
  width: 56px !important;
}

.fp-dot.active {
  background: var(--remax-red, #dc1c2e) !important;
  border-color: var(--remax-red, #dc1c2e) !important;
}

.type-grid {
  gap: 10px !important;
}

.tcard {
  padding: 12px 8px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}

.tcard.on {
  border-color: var(--remax-red, #dc1c2e) !important;
  background: rgba(220, 28, 46, .07) !important;
  color: var(--remax-red, #dc1c2e) !important;
}

/* ── Hero content polish ── */
.hero-content {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) clamp(32px, 4vw, 48px) !important;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem) !important;
}

.trust-row {
  margin-top: 40px !important;
  padding-top: 24px !important;
}

.trust-row .trust {
  border-left: 3px solid var(--remax-red, #dc1c2e) !important;
  padding-left: 14px;
}

.trust-row .trust strong {
  color: #fff !important;
  font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
}

/* ── Sections below hero ── */
main > section {
  padding: clamp(72px, 8vw, 100px) 0 !important;
}

.section-head {
  margin-bottom: 40px !important;
}

.card {
  background: #fff !important;
  border-radius: 14px !important;
  padding: 32px !important;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  section.hero#contatto.seller-form-section {
    padding: 48px 0;
  }

  .seller-form-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-card.seller-form-card,
  .hero-form-wrap.seller-form-panel .form-card {
    margin: 0 auto !important;
  }

  section.hero#contatto:not(.seller-form-section) {
    grid-template-columns: 1fr !important;
  }

  .hero-left {
    min-height: auto;
  }

  .hero-form-wrap {
    border-left: none !important;
    border-top: 5px solid var(--remax-red, #dc1c2e);
    padding: 40px clamp(24px, 5vw, 40px) 48px !important;
  }

  .hero-content {
    max-width: none;
    padding: clamp(48px, 6vw, 70px) clamp(24px, 5vw, 40px) clamp(36px, 5vw, 48px) !important;
  }
}

@media (max-width: 560px) {
  .hero-form-wrap {
    padding: 32px 20px 40px !important;
  }
}

@media (min-width: 1400px) {
  section.hero#contatto {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  }
}

/* ══════════════════════════════════════════
   Rich content sections
   ══════════════════════════════════════════ */

.seller-stats-strip {
  background: linear-gradient(
    90deg,
    var(--remax-red, #dc1c2e) 0%,
    var(--remax-red, #dc1c2e) 50%,
    var(--remax-blue, #003da5) 50%,
    var(--remax-blue, #003da5) 100%
  );
  padding: 0;
}

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

.seller-stat {
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.seller-stat:last-child {
  border-right: none;
}

.seller-stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  margin-bottom: 8px;
}

.seller-stat span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .88;
  line-height: 1.4;
}

.seller-includes {
  background: #fff !important;
}

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

.seller-include-card {
  background: #fff !important;
  border: 1px solid rgba(0, 61, 165, .1);
  border-top: 4px solid var(--remax-blue, #003da5);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.seller-include-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 61, 165, .12);
  border-top-color: var(--remax-red, #dc1c2e);
}

.seller-include-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--remax-red, #dc1c2e);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.seller-include-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--remax-blue, #003da5);
  margin: 0 0 8px;
}

.seller-include-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.seller-compare {
  background: linear-gradient(180deg, #eef3fb 0%, #e4ecf8 100%) !important;
}

.seller-compare-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 61, 165, .12);
  box-shadow: 0 16px 48px rgba(0, 61, 165, .1);
}

.seller-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 14px;
  align-items: center;
}

.seller-compare-row:last-child {
  border-bottom: none;
}

.seller-compare-head {
  background: var(--remax-blue, #003da5);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seller-compare-row .no {
  color: #b01828;
  font-weight: 700;
}

.seller-compare-row .yes {
  color: #0a7a32;
  font-weight: 800;
}

.seller-compare-row .na {
  color: #666;
}

.seller-zones {
  background: #fff !important;
}

.seller-zones-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.seller-zone-chip {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 61, 165, .08);
  border: 1px solid rgba(0, 61, 165, .18);
  color: var(--remax-blue, #003da5);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease;
}

.seller-zone-chip:hover {
  background: rgba(220, 28, 46, .08);
  border-color: rgba(220, 28, 46, .3);
  color: var(--remax-red, #dc1c2e);
}

.seller-zones-link {
  text-align: center;
  margin: 0;
}

.seller-zones-link a {
  color: var(--remax-red, #dc1c2e);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seller-services {
  background: #f4f7fc !important;
}

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

.seller-service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid rgba(0, 61, 165, .1);
  border-bottom: 4px solid var(--remax-red, #dc1c2e);
  box-shadow: 0 8px 28px rgba(0, 61, 165, .08);
  transition: transform .2s ease;
}

.seller-service-card:hover {
  transform: translateY(-4px);
}

.seller-service-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--remax-blue, #003da5);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
}

.seller-service-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: var(--remax-blue, #003da5);
  margin: 0 0 8px;
}

.seller-service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}

.seller-mid-cta {
  background: linear-gradient(135deg, #0c2749 0%, var(--remax-blue, #003da5) 100%) !important;
  padding: clamp(56px, 7vw, 80px) 0 !important;
  border-top: 5px solid var(--remax-red, #dc1c2e);
  border-bottom: 5px solid var(--remax-red, #dc1c2e);
}

.seller-mid-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
}

.seller-mid-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.seller-mid-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff !important;
  margin: 0 0 12px;
  line-height: 1.15;
}

.seller-mid-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  max-width: 520px;
}

.seller-mid-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.seller-mid-actions .btn {
  width: 100%;
  min-height: 52px;
}

.seller-mid-actions .btn-light {
  background: #fff !important;
  color: var(--remax-blue, #003da5) !important;
}

/* ── Dark sections: network + market (glass cards, white text) ── */
.network {
  background: linear-gradient(145deg, var(--blue-dark, #0c2749) 0%, #0a1f3a 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

.market {
  background: linear-gradient(145deg, #0a1f3a 0%, var(--remax-blue, #003da5) 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

.network-grid,
.market-grid {
  gap: 20px !important;
}

.network-card,
.market-card {
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-top: 4px solid var(--remax-red, #dc1c2e) !important;
  border-radius: 14px !important;
  padding: 28px !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .22) !important;
}

.network-card span,
.market-card span {
  color: #ff8a94 !important;
}

.network-card strong,
.market-card strong {
  color: #fff !important;
}

.network-card p,
.market-card p {
  color: rgba(255, 255, 255, .82) !important;
}

.network-card:hover,
.market-card:hover {
  background: rgba(255, 255, 255, .14) !important;
  border-top-color: var(--remax-red, #dc1c2e) !important;
}

.about {
  background: #fff !important;
}

.portrait-card {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 61, 165, .14) !important;
  border: 3px solid var(--remax-red, #dc1c2e) !important;
}

.quote {
  border-left: 4px solid var(--remax-red, #dc1c2e) !important;
  padding-left: 20px !important;
  font-style: italic;
  color: var(--remax-blue, #003da5) !important;
  font-size: 1.1rem !important;
  margin: 24px 0 !important;
}

.testimonial-card {
  background: #fff !important;
  border-radius: 14px !important;
  border-top: 4px solid var(--remax-red, #dc1c2e) !important;
  padding: 28px !important;
  box-shadow: 0 12px 36px rgba(0, 61, 165, .1) !important;
}

.testimonial-card p {
  color: #333 !important;
}

.testimonial-card .person strong {
  color: var(--remax-blue, #003da5) !important;
}

.testimonial-card .person span {
  color: #666 !important;
}

.stars {
  color: var(--remax-red, #dc1c2e) !important;
  margin-bottom: 12px;
}

details {
  background: #fff !important;
  border: 1px solid rgba(0, 61, 165, .12) !important;
  border-radius: 10px !important;
  padding: 4px 0 !important;
  margin-bottom: 10px !important;
}

details summary {
  padding: 16px 20px !important;
  font-weight: 800 !important;
  cursor: pointer;
}

details[open] summary {
  color: var(--remax-red, #dc1c2e) !important;
}

details p {
  padding: 0 20px 16px !important;
  margin: 0 !important;
  color: #555 !important;
  line-height: 1.6 !important;
}

@media (max-width: 980px) {
  .seller-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seller-stat:nth-child(2) {
    border-right: none;
  }

  .seller-includes-grid,
  .seller-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seller-mid-cta-inner {
    grid-template-columns: 1fr;
  }

  .seller-mid-actions {
    min-width: 0;
  }

  .seller-compare-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 18px;
  }

  .seller-compare-head {
    display: none;
  }

  .seller-compare-row span:first-child {
    font-weight: 900;
    color: var(--remax-blue, #003da5);
    margin-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .seller-stats-grid,
  .seller-includes-grid,
  .seller-services-grid {
    grid-template-columns: 1fr;
  }

  .seller-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }
}

/* ══════════════════════════════════════════════════════════
   FINAL OVERRIDE — network + market (dark section, glass cards)
   Loaded last: fixes white cards + white text on production
   ══════════════════════════════════════════════════════════ */
section.network#remax,
section.network,
section.market#mercato,
section.market {
  background: linear-gradient(145deg, #0c2749 0%, #003da5 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

section.network#remax .section-head h2,
section.network#remax h2,
section.network .section-head h2,
section.network h2,
section.market#mercato .section-head h2,
section.market#mercato h2,
section.market .section-head h2,
section.market h2 {
  color: #fff !important;
}

section.network#remax .section-head p,
section.network#remax .section-kicker,
section.network .section-head p,
section.network .section-kicker,
section.market#mercato .section-head p,
section.market#mercato .section-kicker,
section.market .section-head p,
section.market .section-kicker {
  color: rgba(255, 255, 255, .88) !important;
}

section.network .network-card,
section.market .market-card,
.network-card,
.market-card {
  background: rgba(255, 255, 255, .12) !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-top: 4px solid var(--remax-red, #dc1c2e) !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .25) !important;
}

section.network .network-card span,
section.market .market-card span,
.network-card span,
.market-card span {
  color: #ff8a94 !important;
}

section.network .network-card strong,
section.market .market-card strong,
.network-card strong,
.market-card strong {
  color: #fff !important;
}

section.network .network-card p,
section.market .market-card p,
.network-card p,
.market-card p {
  color: rgba(255, 255, 255, .88) !important;
}

section.market#mercato a,
section.market a,
section.network#remax a,
section.network a {
  color: #ff8a94 !important;
}

section.market#mercato a:hover,
section.market a:hover,
section.network#remax a:hover,
section.network a:hover {
  color: #fff !important;
}

/* Hero agent chip */
.hero-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  width: fit-content;
  max-width: 100%;
}

.hero-agent img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(255, 255, 255, .35);
  flex-shrink: 0;
}

.hero-agent strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.hero-agent span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  margin-top: 2px;
}

.seller-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: linear-gradient(180deg, var(--blue-dark, #0c2749) 0%, #070707 100%);
  border-top: 3px solid var(--remax-red, #dc1c2e);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  transform: translateY(110%);
  transition: transform .3s ease;
}

.seller-sticky-bar.visible {
  transform: translateY(0);
}

.seller-sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}

.seller-sticky-inner .btn {
  flex: 1;
  min-height: 48px;
  font-size: 14px;
}

.seller-sticky-inner .btn-outline {
  flex: 0 0 auto;
  min-width: 48px;
  padding: 0 14px;
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

@media (max-width: 980px) {
  .seller-sticky-bar {
    display: block;
  }

  body.seller-has-sticky {
    padding-bottom: 78px;
  }
}
