/* Loaded AFTER escorts-premium-concierge (which sets body{...!important}),
   so the child design always wins. See functions.php. */

/* ============================================================
   1. DESIGN TOKENS
   The parent theme drives every component from CSS custom properties,
   so redefining them here restyles all inherited templates at once.
   ============================================================ */
:root {
  /* new palette — ink base, champagne accent */
  --el-bg:          #0c0e13;
  --el-surface:     #151922;
  --el-surface-2:   #1e2430;
  --el-line:        #2a3140;
  --el-text:        #eceff5;
  --el-muted:       #9aa3b5;
  --el-accent:      #e3b664;
  --el-accent-dark: #c2954a;
  --el-success:     #34d399;
  --el-danger:      #f87171;
  --el-radius:      14px;
  --el-radius-sm:   10px;

  /* --- override the parent's own tokens so inherited components follow --- */
  --primary-gradient:  linear-gradient(135deg, #e3b664 0%, #c2954a 100%);
  --primary-color:     #e3b664;
  --primary-dark:      #c2954a;
  --accent-color:      #e3b664;
  --accent-dark:       #c2954a;
  --premium-red:       #e3b664;
  --premium-dark-red:  #c2954a;
  --premium-gold:      linear-gradient(135deg, #e3b664 0%, #c2954a 100%);
  --premium-border:    linear-gradient(135deg, #e3b664 0%, rgba(255,255,255,.2) 50%, #e3b664 100%);
  --ll-accent:         #e3b664;
  --ll-accent-dark:    #c2954a;
  --dark-bg:           #0c0e13;
  --nav-bg:            #0c0e13;
  --nav-link-color:    #eceff5;
  --nav-link-hover:    #e3b664;
  --card-shadow:       0 1px 2px rgba(0,0,0,.5), 0 8px 24px rgba(0,0,0,.35);
  --card-shadow-hover: 0 2px 6px rgba(0,0,0,.55), 0 16px 40px rgba(0,0,0,.45);
}

/* ============================================================
   2. BASE
   ============================================================ */
body {
  background: var(--el-bg) !important;
  color: var(--el-text) !important;
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .site-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--el-text);
  letter-spacing: -.01em;
}
a { color: var(--el-accent); }
a:hover { color: var(--el-accent-dark); }
hr, .divider { border-color: var(--el-line); }

/* Tailwind utility surfaces used by the parent, remapped to the dark scale */
.bg-white        { background-color: var(--el-surface) !important; }
.bg-gray-50,
.bg-gray-100     { background-color: var(--el-surface-2) !important; }
.text-gray-900,
.text-gray-800   { color: var(--el-text) !important; }
.text-gray-600,
.text-gray-500   { color: var(--el-muted) !important; }
.border-gray-200,
.border-gray-300 { border-color: var(--el-line) !important; }
.shadow, .shadow-md, .shadow-lg { box-shadow: var(--card-shadow) !important; }

/* ============================================================
   3. HEADER / NAV
   ============================================================ */
.site-header, header.site-header, .navbar, .top-bar {
  background: var(--el-bg);
  border-bottom: 1px solid var(--el-line);
}
.nav a, .navbar a { color: var(--el-text); }
.nav a:hover, .navbar a:hover { color: var(--el-accent); }

/* ============================================================
   4. CARDS / LISTINGS
   ============================================================ */
.ad-card, .listing-card, .profile-card, .feature-card, .info-box {
  background: var(--el-surface);
  border: 1px solid var(--el-line);
  border-radius: var(--el-radius);
  box-shadow: var(--card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ad-card:hover, .listing-card:hover, .profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--el-accent);
}
.ad-card-image-wrapper, .listing-card img {
  border-radius: var(--el-radius) var(--el-radius) 0 0;
}
.badge, .tag, .chip {
  background: var(--el-surface-2);
  color: var(--el-accent);
  border: 1px solid var(--el-line);
  border-radius: 999px;
}

/* ============================================================
   5. BUTTONS / FORMS
   ============================================================ */
.btn, .button, button.primary, input[type="submit"] {
  background: var(--primary-gradient);
  color: #14161c;
  font-weight: 700;
  border: none;
  border-radius: var(--el-radius-sm);
}
.btn:hover, .button:hover, input[type="submit"]:hover { filter: brightness(1.07); }
.btn-outline, .button.secondary {
  background: transparent;
  color: var(--el-accent);
  border: 1px solid var(--el-accent);
}
input, select, textarea {
  background: var(--el-surface-2) !important;
  color: var(--el-text) !important;
  border: 1px solid var(--el-line) !important;
  border-radius: var(--el-radius-sm);
}
input::placeholder, textarea::placeholder { color: var(--el-muted); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--el-accent) !important;
  box-shadow: 0 0 0 3px rgba(227,182,100,.18);
}

/* ============================================================
   6. HERO / SECTION HEADERS
   ============================================================ */
.hero {
  background: radial-gradient(1200px 400px at 50% -120px, rgba(227,182,100,.16), transparent 70%), var(--el-bg);
  border-bottom: 1px solid var(--el-line);
}
.hero h1 { color: var(--el-text); }
.hero p  { color: var(--el-muted); }
.section-header h2 {
  color: var(--el-text);
  border-left: 3px solid var(--el-accent);
  padding-left: 12px;
}
.stats .stat-number { color: var(--el-accent); }
.stats .stat-label  { color: var(--el-muted); }

/* ============================================================
   7. FOOTER
   ============================================================ */
.footer, footer.footer {
  background: #08090d;
  border-top: 1px solid var(--el-line);
  color: var(--el-muted);
}
.footer a { color: var(--el-muted); }
.footer a:hover { color: var(--el-accent); }

/* ============================================================
   8. ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 2px solid var(--el-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   9. HOME — price-transparent directory
   Components prefixed .el- so they never collide with the parent theme.
   ============================================================ */
.el-wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* --- hero ------------------------------------------------- */
.el-hero {
  background:
    radial-gradient(900px 380px at 15% -140px, rgba(227,182,100,.18), transparent 65%),
    radial-gradient(700px 300px at 85% -100px, rgba(227,182,100,.08), transparent 60%),
    var(--el-bg);
  border-bottom: 1px solid var(--el-line);
  padding: 72px 0 56px;
}
.el-kicker {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--el-accent); margin: 0 0 14px; font-weight: 700;
}
.el-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.08; margin: 0 0 16px; color: var(--el-text); max-width: 15ch;
}
.el-sub {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65;
  color: var(--el-muted); max-width: 62ch; margin: 0;
}

/* --- proof strip ------------------------------------------ */
.el-proof { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 38px; }
.el-proof-item { display: flex; flex-direction: column; gap: 4px; }
.el-proof-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; color: var(--el-accent); line-height: 1;
}
.el-proof-l { font-size: 13px; color: var(--el-muted); letter-spacing: .01em; }

/* --- filters ---------------------------------------------- */
.el-filters {
  background: var(--el-surface);
  border-bottom: 1px solid var(--el-line);
  padding: 20px 0 8px;
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(8px);
}
.el-filter-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; margin-bottom: 12px;
}
.el-filter-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--el-muted); min-width: 96px; font-weight: 700;
}
.el-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--el-surface-2); border: 1px solid var(--el-line);
  color: var(--el-text); font-size: 13.5px; font-weight: 600;
  text-decoration: none; transition: all .16s ease; white-space: nowrap;
}
.el-chip:hover { border-color: var(--el-accent); color: var(--el-accent); }
.el-chip.is-on {
  background: var(--el-accent); border-color: var(--el-accent);
  color: #14161c;
}
.el-chip-n { opacity: .6; font-weight: 500; font-size: 12px; }

/* --- results ---------------------------------------------- */
.el-results { padding: 34px 0 72px; }
.el-results-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 22px;
}
.el-results-head h2 {
  font-size: 19px; margin: 0; color: var(--el-text);
  font-family: 'Manrope', sans-serif; font-weight: 700;
}
.el-clear { font-size: 13px; color: var(--el-muted); text-decoration: underline; }
.el-clear:hover { color: var(--el-accent); }
.el-empty {
  color: var(--el-muted); background: var(--el-surface);
  border: 1px dashed var(--el-line); border-radius: var(--el-radius);
  padding: 40px; text-align: center;
}

/* --- grid + cards ----------------------------------------- */
.el-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(236px, 1fr));
}
.el-card {
  background: var(--el-surface);
  border: 1px solid var(--el-line);
  border-radius: var(--el-radius);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.el-card:hover {
  transform: translateY(-3px);
  border-color: var(--el-accent);
  box-shadow: var(--card-shadow-hover);
}
.el-card-media {
  display: block; position: relative; aspect-ratio: 3 / 4;
  background: var(--el-surface-2); overflow: hidden;
}
.el-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.el-card-noimg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--el-surface-2) 0%, var(--el-surface) 100%);
}
.el-card-noimg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120px 120px at 50% 42%, rgba(227,182,100,.12), transparent 70%);
}

/* the price is the hero of the card — this is the whole point of the site */
.el-price {
  position: absolute; left: 10px; bottom: 10px;
  display: inline-flex; align-items: baseline; gap: 5px;
  padding: 7px 12px; border-radius: 10px;
  background: rgba(12,14,19,.86);
  border: 1px solid var(--el-accent);
  color: var(--el-accent);
  font-weight: 800; font-size: 17px; letter-spacing: -.01em;
  backdrop-filter: blur(6px);
}
.el-price small { font-size: 11px; font-weight: 600; opacity: .8; letter-spacing: 0; }
.el-price--none {
  color: var(--el-muted); border-color: var(--el-line);
  font-size: 12.5px; font-weight: 600;
}
.el-now {
  position: absolute; right: 10px; top: 10px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.5);
  color: var(--el-success); font-size: 11px; font-weight: 700;
}

.el-card-body { padding: 13px 14px 15px; }
.el-card-name { margin: 0 0 6px; font-size: 15.5px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.el-card-name a { color: var(--el-text); text-decoration: none; }
.el-card-name a:hover { color: var(--el-accent); }
.el-verified {
  display: inline-block; margin-left: 5px;
  width: 16px; height: 16px; line-height: 16px; text-align: center;
  border-radius: 50%; background: var(--el-accent); color: #14161c;
  font-size: 10px; font-weight: 900; vertical-align: middle;
}
.el-card-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0 0 8px; font-size: 12.5px; color: var(--el-muted);
}
.el-card-meta span:not(:last-child)::after { content: '·'; margin-left: 6px; opacity: .5; }
.el-type { color: var(--el-text); }
.el-reply { margin: 0; font-size: 12px; color: var(--el-muted); }
.el-reply.is-fast { color: var(--el-success); font-weight: 600; }

/* --- responsive ------------------------------------------- */
@media (max-width: 720px) {
  .el-hero { padding: 48px 0 36px; }
  .el-proof { gap: 26px; }
  .el-proof-n { font-size: 24px; }
  .el-filters { position: static; }
  .el-filter-label { min-width: 100%; margin-bottom: 2px; }
  .el-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .el-price { font-size: 15px; padding: 6px 10px; }
}

/* ============================================================
   10. HOME v2 — interactive price market
   Replaces the static v1 blocks (.el-*). Prefixed .ex- to stay clear of the parent theme.
   ============================================================ */
.ex-wrap { max-width: 1300px; margin: 0 auto; padding: 0 22px; }

/* ---------- hero with a live photo mosaic behind it ---------- */
.ex-hero { position: relative; overflow: hidden; padding: 88px 0 64px; background: var(--el-bg); }
.ex-hero-bg {
  position: absolute; inset: 0; display: grid; gap: 6px;
  grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr;
  opacity: .17; filter: grayscale(.4) contrast(1.05);
  transform: rotate(-6deg) scale(1.35); transform-origin: center;
  pointer-events: none;
}
.ex-hero-tile { overflow: hidden; border-radius: 10px; animation: exFloat 9s ease-in-out infinite; animation-delay: calc(var(--i) * .35s); }
.ex-hero-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes exFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.ex-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 420px at 22% 20%, rgba(12,14,19,.35), transparent 70%),
    linear-gradient(180deg, rgba(12,14,19,.72) 0%, rgba(12,14,19,.94) 62%, var(--el-bg) 100%);
}
.ex-hero-inner { position: relative; z-index: 2; }

.ex-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--el-accent); background: rgba(227,182,100,.1);
  border: 1px solid rgba(227,182,100,.32); border-radius: 999px;
  padding: 7px 14px; margin: 0 0 22px;
}
.ex-dot, .ex-tdot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--el-success);
  box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: exPulse 2s infinite; display: inline-block;
}
@keyframes exPulse { 70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }

.ex-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 6.4vw, 74px); line-height: 1.02;
  margin: 0 0 18px; color: #fff; letter-spacing: -.02em;
}
.ex-hero h1 em { font-style: italic; color: var(--el-accent); }
.ex-sub { font-size: clamp(15px, 1.7vw, 19px); line-height: 1.6; color: #c3cad8; max-width: 56ch; margin: 0 0 30px; }

.ex-liveline { display: flex; flex-wrap: wrap; gap: 30px; }
.ex-liveline span { font-size: 13.5px; color: var(--el-muted); }
.ex-liveline strong {
  display: block; font-family: 'Playfair Display', Georgia, serif;
  font-size: 27px; color: #fff; line-height: 1.15;
}

/* ---------- price market panel ---------- */
.ex-controls { position: sticky; top: 0; z-index: 30; background: rgba(12,14,19,.93); backdrop-filter: blur(10px); border-bottom: 1px solid var(--el-line); padding: 18px 0 14px; }
.ex-price-panel { background: var(--el-surface); border: 1px solid var(--el-line); border-radius: 16px; padding: 16px 18px 10px; }
.ex-price-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.ex-label { display: block; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--el-muted); font-weight: 700; }
.ex-range-out { font-family: 'Playfair Display', Georgia, serif; font-size: 25px; color: var(--el-accent); }
.ex-count { font-size: 13px; color: var(--el-muted); white-space: nowrap; }

.ex-hist { display: flex; align-items: flex-end; gap: 3px; height: 62px; margin-bottom: 6px; }
.ex-bar {
  flex: 1; height: var(--h); min-height: 3px; border-radius: 4px 4px 0 0; cursor: pointer;
  background: linear-gradient(180deg, var(--el-accent) 0%, rgba(227,182,100,.35) 100%);
  transition: opacity .18s ease, transform .18s ease;
}
.ex-bar:hover { transform: scaleY(1.06); }
.ex-bar.dim { opacity: .18; }

.ex-range { position: relative; height: 30px; }
.ex-range input[type="range"] {
  position: absolute; left: 0; right: 0; width: 100%; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none;
}
.ex-range input[type="range"]::-webkit-slider-runnable-track { height: 3px; background: var(--el-line); border-radius: 3px; }
.ex-range input[type="range"]::-moz-range-track { height: 3px; background: var(--el-line); border-radius: 3px; }
.ex-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; pointer-events: auto; width: 20px; height: 20px; margin-top: -9px;
  border-radius: 50%; background: var(--el-accent); border: 3px solid #0c0e13;
  box-shadow: 0 2px 8px rgba(0,0,0,.5); cursor: grab;
}
.ex-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto; width: 20px; height: 20px; border-radius: 50%;
  background: var(--el-accent); border: 3px solid #0c0e13; cursor: grab;
}

/* ---------- toggles ---------- */
.ex-toggles { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px; }
.ex-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  background: var(--el-surface-2); border: 1px solid var(--el-line);
  color: var(--el-text); font-size: 13.5px; font-weight: 600; font-family: inherit;
  transition: all .15s ease;
}
.ex-toggle:hover { border-color: var(--el-accent); color: var(--el-accent); }
.ex-toggle.on { background: var(--el-accent); border-color: var(--el-accent); color: #14161c; }
.ex-toggle.on .ex-tdot { background: #14161c; animation: none; }
.ex-sep { width: 1px; height: 22px; background: var(--el-line); margin: 0 4px; }
.ex-select {
  padding: 8px 12px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: var(--el-surface-2) !important; color: var(--el-text) !important;
  border: 1px solid var(--el-line) !important; font-family: inherit; cursor: pointer;
}
.ex-reset { margin-left: auto; background: none; border: none; color: var(--el-muted); font-size: 13px; text-decoration: underline; cursor: pointer; font-family: inherit; }
.ex-reset:hover { color: var(--el-accent); }

/* ---------- grid + card ---------- */
.ex-results { padding: 26px 0 80px; }
.ex-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.ex-card[hidden] { display: none; }
.ex-card {
  border-radius: 16px; overflow: hidden; background: var(--el-surface);
  border: 1px solid var(--el-line);
  transition: transform .2s cubic-bezier(.2,.7,.3,1), border-color .2s, box-shadow .2s;
}
.ex-card:hover { transform: translateY(-5px); border-color: var(--el-accent); box-shadow: 0 18px 44px rgba(0,0,0,.5); }

.ex-card-media { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; background: var(--el-surface-2); }
.ex-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s ease; }
.ex-shot.is-first { opacity: 1; }
.ex-card-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 34%, transparent 52%, rgba(0,0,0,.82) 100%);
}

.ex-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; }
.ex-b {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 800;
  letter-spacing: .03em; backdrop-filter: blur(6px);
}
.ex-b-now  { background: rgba(52,211,153,.18); border: 1px solid rgba(52,211,153,.55); color: #6ee7b7; }
.ex-b-fast { background: rgba(227,182,100,.16); border: 1px solid rgba(227,182,100,.5); color: var(--el-accent); }

.ex-rate {
  position: absolute; left: 12px; bottom: 11px; z-index: 2;
  display: flex; align-items: baseline; gap: 3px; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.ex-rate b { font-family: 'Playfair Display', Georgia, serif; font-size: 27px; line-height: 1; letter-spacing: -.01em; }
.ex-rate i { font-style: normal; font-size: 12px; font-weight: 700; opacity: .75; }
.ex-rate .ex-rate-none { font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 700; opacity: .8; }

.ex-dots { position: absolute; right: 10px; bottom: 13px; display: flex; gap: 4px; z-index: 2; }
.ex-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); transition: background .2s; }
.ex-dots i.on { background: var(--el-accent); }

.ex-card-foot { padding: 11px 13px 13px; }
.ex-name { display: flex; align-items: center; gap: 5px; font-weight: 700; font-size: 15px; }
.ex-name a { color: var(--el-text); text-decoration: none; }
.ex-card:hover .ex-name a { color: var(--el-accent); }
.ex-tick {
  width: 15px; height: 15px; line-height: 15px; text-align: center; font-style: normal;
  border-radius: 50%; background: var(--el-accent); color: #14161c; font-size: 9px; font-weight: 900;
}
.ex-meta { display: block; margin-top: 3px; font-size: 12.5px; color: var(--el-muted); }

.ex-empty {
  margin-top: 30px; padding: 46px; text-align: center; color: var(--el-muted);
  background: var(--el-surface); border: 1px dashed var(--el-line); border-radius: 16px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .ex-hero { padding: 56px 0 42px; }
  .ex-hero-bg { grid-template-columns: repeat(4, 1fr); }
  .ex-liveline { gap: 20px; }
  .ex-liveline strong { font-size: 21px; }
  .ex-controls { position: static; }
  .ex-reset { margin-left: 0; }
  .ex-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 11px; }
  .ex-rate b { font-size: 21px; }
  .ex-hist { height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
  .ex-hero-tile, .ex-dot, .ex-tdot { animation: none !important; }
  .ex-card { transition: none; }
}

/* ---------- city market block (shortcode) ---------- */
.ex-citymarket {
  background: var(--el-surface); border: 1px solid var(--el-line);
  border-radius: 18px; padding: 18px 20px 22px; margin: 26px 0 34px;
}
.ex-cm-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.ex-cm-compare { font-size: 13px; color: var(--el-muted); }
.ex-cm-compare strong { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; }
.ex-cm-compare .up   { color: var(--el-accent); }
.ex-cm-compare .down { color: var(--el-success); }
.ex-cm-toggles { margin-top: 14px; }
.ex-cm-count { font-size: 13px; color: var(--el-muted); margin-left: auto; }
.ex-cm-grid { margin-top: 18px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
@media (max-width: 860px) {
  .ex-citymarket { padding: 14px 13px 18px; border-radius: 14px; }
  .ex-cm-count { margin-left: 0; width: 100%; }
  .ex-cm-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ============================================================
   11. PROFILE PAGE
   Reformat only — the parent template (53KB, booking/gallery/report modals, contact reveal)
   is left untouched so none of its JS breaks. Every field it renders is kept; what changes is
   hierarchy, surface colour and grouping.
   ============================================================ */

/* ---- shell ------------------------------------------------ */
.profile-page { padding-top: 26px; }
.profile-page .bg-white.rounded-3xl {
  background: linear-gradient(180deg, var(--el-surface) 0%, var(--el-bg) 100%) !important;
  border: 1px solid var(--el-line);
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.45) !important;
  padding: 26px 28px !important;
}

/* premium-concierge paints these white; this file loads after it */
.profile-page .info-card {
  background: var(--el-surface) !important;
  border: 1px solid var(--el-line);
  border-radius: 16px !important;
  padding: 20px 22px !important;
  color: var(--el-text) !important;
}
.profile-page .section-title {
  color: var(--el-text) !important;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 15px !important; letter-spacing: .02em; text-transform: uppercase;
  padding-left: 11px; border-left: 3px solid var(--el-accent);
  margin-bottom: 14px !important;
}
.profile-page .text-gray-700,
.profile-page .text-gray-600,
.profile-page .text-gray-500 { color: var(--el-muted) !important; }
.profile-page .text-gray-900,
.profile-page .text-gray-800 { color: var(--el-text) !important; }
.profile-page .bg-gray-50,
.profile-page .bg-gray-100 { background: var(--el-surface-2) !important; }

/* ---- name + headline row ---------------------------------- */
.profile-page .profile-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(30px, 4.4vw, 46px) !important;
  color: #fff !important; letter-spacing: -.02em; line-height: 1.05;
}

/* ---- stats strip: four figures, empties recede ------------- */
.profile-page .profile-stats-grid {
  gap: 0 !important;
  background: var(--el-surface-2);
  border: 1px solid var(--el-line);
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0 16px !important;
}
.profile-page .stats-item {
  padding: 14px 16px !important;
  border-right: 1px solid var(--el-line);
  background: transparent !important;
  text-align: left !important;
}
.profile-page .stats-item:last-child { border-right: none; }
.profile-page .stats-number {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 26px !important; color: var(--el-accent) !important; line-height: 1.1;
}
.profile-page .stats-item .font-medium {
  font-size: 10.5px !important; letter-spacing: .14em; text-transform: uppercase;
  color: var(--el-muted) !important; margin-top: 3px;
}
/* a dash means the source had nothing — say so quietly instead of shouting a placeholder */
.profile-page .stats-item:has(.stats-number:only-child) { opacity: .45; }

/* ---- meta row becomes chips ------------------------------- */
.profile-page .flex.flex-wrap.gap-3.text-gray-700 { gap: 8px !important; }
.profile-page .flex.flex-wrap.gap-3.text-gray-700 > span {
  background: var(--el-surface-2);
  border: 1px solid var(--el-line);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  color: var(--el-text) !important;
}
.profile-page .flex.flex-wrap.gap-3.text-gray-700 strong {
  color: var(--el-muted) !important; font-weight: 600; margin-right: 5px;
}
.profile-page .flex.flex-wrap.gap-3.text-gray-700 i { color: var(--el-accent) !important; }
.profile-page .city-link { color: var(--el-accent) !important; font-weight: 700; }

/* ---- gallery ---------------------------------------------- */
.profile-page .profile-gallery-main { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--el-line); }
.profile-page .main-image { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.profile-page .profile-gallery-open {
  position: absolute; right: 14px; bottom: 14px;
  background: rgba(12,14,19,.82) !important; color: var(--el-accent) !important;
  border: 1px solid var(--el-accent) !important; border-radius: 999px !important;
  padding: 9px 16px !important; font-weight: 700; font-size: 13px; backdrop-filter: blur(6px);
}
.profile-page .profile-gallery-thumbs { display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.profile-page .profile-gallery-thumb {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--el-line);
  aspect-ratio: 1/1; cursor: pointer; transition: border-color .16s, transform .16s;
}
.profile-page .profile-gallery-thumb:hover { border-color: var(--el-accent); transform: translateY(-2px); }
.profile-page .profile-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---- services as chips ------------------------------------ */
.profile-page .info-card .flex.flex-wrap > span,
.profile-page .service-tag {
  background: var(--el-surface-2) !important;
  border: 1px solid var(--el-line) !important;
  color: var(--el-text) !important;
  border-radius: 999px !important;
  padding: 6px 13px !important;
  font-size: 13px !important;
  margin: 0 6px 6px 0 !important;
}

/* ---- sidebar: the money column, sticky -------------------- */
@media (min-width: 1024px) {
  .profile-page .lg\:col-span-1 { position: sticky; top: 16px; align-self: start; }
}
.profile-page .price-card {
  background: var(--el-surface-2) !important;
  border: 1px solid var(--el-line) !important;
  border-radius: 12px !important;
  padding: 13px 15px !important;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.profile-page .price-card:first-of-type {
  border-color: var(--el-accent) !important;
  background: linear-gradient(180deg, rgba(227,182,100,.12), rgba(227,182,100,.03)) !important;
}
.profile-page .price-card * { color: var(--el-text) !important; }
.profile-page .price-card strong,
.profile-page .price-card .price {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 23px !important; color: var(--el-accent) !important;
}

/* ---- actions ---------------------------------------------- */
.profile-page .contact-btn {
  background: linear-gradient(135deg, var(--el-accent) 0%, var(--el-accent-dark) 100%) !important;
  color: #14161c !important;
  border: none !important; border-radius: 12px !important;
  font-weight: 800 !important; letter-spacing: .01em;
  box-shadow: 0 8px 22px rgba(227,182,100,.18);
  transition: filter .15s ease, transform .15s ease;
}
.profile-page .contact-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.profile-page a[href^="tel:"] { color: var(--el-accent) !important; font-weight: 700; }

/* ---- availability + safety -------------------------------- */
.profile-page .info-card ul { list-style: none; padding: 0; margin: 0; }
.profile-page .info-card li {
  padding: 8px 0; border-bottom: 1px solid var(--el-line);
  display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px;
}
.profile-page .info-card li:last-child { border-bottom: none; }

/* ---- report / modals keep the parent behaviour ------------ */
.profile-page .text-red-600 { color: var(--el-danger) !important; }
.profile-page .escorts-gallery-content,
.profile-page [class*="modal"] .bg-white { background: var(--el-surface) !important; color: var(--el-text) !important; }

@media (max-width: 860px) {
  .profile-page .bg-white.rounded-3xl { padding: 18px 16px !important; border-radius: 16px !important; }
  .profile-page .profile-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .profile-page .stats-item:nth-child(2) { border-right: none; }
  .profile-page .stats-item:nth-child(-n+2) { border-bottom: 1px solid var(--el-line); }
  .profile-page .profile-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================================
   12. HEADER
   Text fixes live in header.php (fake phone, old tagline, ".vc" logo which read as the
   sibling brand escorts.vc). This only re-skins it; every JS hook/id is untouched.
   ============================================================ */
.premium-header, .pc-utility-row, .mobile-header,
.desktop-version .premium-header, .desktop-version .pc-utility-row,
.desktop-version .pc-brand-row, .desktop-version .premium-nav {
  background: var(--el-bg) !important;
  border-bottom: 1px solid var(--el-line);
  color: var(--el-text) !important;
}
.pc-utility-row { font-size: 12.5px; color: var(--el-muted) !important; }
.pc-utility-row a { color: var(--el-muted) !important; }
.pc-utility-row a:hover { color: var(--el-accent) !important; }
.pc-utility-left strong { color: var(--el-accent) !important; font-weight: 700; }

.pc-brand-row, .desktop-version .pc-brand-row { background: var(--el-bg) !important; }
.pc-logo-block small {
  display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--el-muted) !important; margin-bottom: 2px;
}
.pc-logo { font-family: 'Playfair Display', Georgia, serif !important; font-size: 27px; }
.pc-logo span:first-child { color: #fff !important; }
.pc-logo span:last-child, .logo-dot { color: var(--el-accent) !important; margin-left: 4px; }

.pc-search-shell .premium-search, .search-form input[type="search"] {
  background: var(--el-surface-2) !important;
  border: 1px solid var(--el-line) !important;
  color: var(--el-text) !important;
  border-radius: 999px !important;
}
.pc-search-submit {
  background: var(--el-accent) !important; color: #14161c !important;
  border-radius: 999px !important; border: none !important;
}
.premium-nav, .desktop-version .premium-nav { background: var(--el-surface) !important; border-bottom: 1px solid var(--el-line); }
.premium-nav a { color: var(--el-text) !important; }
.premium-nav a:hover { color: var(--el-accent) !important; }

/* mobile chrome */
.mobile-header, .mobile-menu-drawer, .mobile-menu-header {
  background: var(--el-bg) !important; color: var(--el-text) !important;
  border-color: var(--el-line) !important;
}
.mobile-menu-link, .mobile-menu-list a { color: var(--el-text) !important; }
.mobile-menu-link:hover { color: var(--el-accent) !important; }
.mobile-logo, .mobile-menu-title { color: #fff !important; }

/* ---------- rate in context (profile) ---------- */
.ex-ratectx .ex-ctx-compare { margin-bottom: 18px; }
.ex-ctx-figure strong {
  font-family: 'Playfair Display', Georgia, serif; font-size: 30px; line-height: 1;
  color: var(--el-accent); display: block;
}
.ex-ctx-compare.below .ex-ctx-figure strong { color: var(--el-success); }
.ex-ctx-figure span { font-size: 13px; color: var(--el-muted); }
.ex-ctx-bar {
  position: relative; height: 6px; border-radius: 999px;
  background: var(--el-surface-2); border: 1px solid var(--el-line); margin: 14px 0 8px;
}
.ex-ctx-bar span { position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%; transform: translate(-50%,-50%); }
.ex-ctx-median { background: var(--el-muted); }
.ex-ctx-this   { background: var(--el-accent); box-shadow: 0 0 0 4px rgba(227,182,100,.18); }
.ex-ctx-legend { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--el-muted); }
.ex-ctx-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; }
.ex-ctx-legend .dot.median { background: var(--el-muted); }
.ex-ctx-legend .dot.this { background: var(--el-accent); }

.ex-ctx-perhour { border-top: 1px solid var(--el-line); padding-top: 14px; }
.ex-ctx-head { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--el-muted); margin-bottom: 10px; font-weight: 700; }
.ex-ctx-row { display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 10px; padding: 5px 0; }
.ex-ctx-label { font-size: 12.5px; color: var(--el-muted); }
.ex-ctx-line { height: 6px; background: var(--el-surface-2); border-radius: 999px; overflow: hidden; }
.ex-ctx-line i { display: block; height: 100%; background: linear-gradient(90deg, var(--el-accent-dark), var(--el-accent)); border-radius: 999px; }
.ex-ctx-val { font-weight: 800; font-size: 14px; color: var(--el-text); }
.ex-ctx-val small { font-weight: 600; font-size: 10px; color: var(--el-muted); }
.ex-ctx-row.is-best .ex-ctx-val { color: var(--el-success); }
.ex-ctx-note { margin: 10px 0 0; font-size: 12.5px; color: var(--el-success); }

/* availability card still used light-theme utility classes */
.profile-page .bg-green-50, .profile-page .bg-blue-50 { background: var(--el-surface-2) !important; }
.profile-page .text-green-600 { color: var(--el-success) !important; }

/* ============================================================
   13. TYPE + COLOUR CORRECTION (site-wide)

   Findings from auditing computed styles on a live profile page:
   - Nav links computed to rgb(45,32,64) — dark purple on a dark nav, effectively invisible.
     The parent scopes them more specifically than the child did.
   - The "strange underlines" are light-theme hairlines that survived the dark repaint:
     border-bottom: 1px solid rgba(21,19,26,.08) on .info-card / .bg-white / .mb-6, and
     rgba(80,54,124,.16) on .service-badge. A near-black 8% line on a dark surface reads as a smear.
   - Fonts had drifted to three families: Inter (427 elements), Playfair (12) and Manrope
     (declared by the child, applied nowhere). Manrope is dropped — Inter is already loaded
     everywhere and is the better UI face here; Playfair stays for display only.
   ============================================================ */

/* ---------- 13.1 type scale: two families, no more ---------- */
body,
body .profile-page,
.premium-nav, .pc-utility-row, .info-card, .ex-card, .ex-toggle, .ex-select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
h1, h2, h3,
.pc-logo, .ex-hero h1, .ex-range-out, .ex-proof-n, .ex-liveline strong,
.stats-number, .ex-rate b, .ex-ctx-figure strong, .ex-cm-compare strong, .price-amount {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
}
/* .section-title is a label, not display type — keep it in the UI face */
.profile-page .section-title, .section-header h2 {
  font-family: 'Inter', -apple-system, sans-serif !important;
}

/* ---------- 13.2 kill the light-theme hairlines ---------- */
.profile-page .info-card,
.profile-page .bg-white,
.profile-page .mb-6,
.profile-page .rounded-3xl,
.profile-page .rounded-lg,
.desktop-version .info-card,
.info-card {
  border-bottom-color: var(--el-line) !important;
}
/* the offenders that should carry no divider at all */
.profile-page .info-card,
.profile-page .profile-gallery-main,
.profile-page .mb-6 {
  border-bottom: none !important;
}
.profile-page .info-card { border: 1px solid var(--el-line) !important; }

.profile-page .available-badge,
.profile-page .service-badge,
a.service-badge {
  border-color: var(--el-line) !important;
  background: var(--el-surface-2) !important;
  color: var(--el-text) !important;
}
.profile-page .available-badge {
  border-color: rgba(52,211,153,.45) !important;
  background: rgba(52,211,153,.12) !important;
  color: var(--el-success) !important;
}
/* the stats strip keeps its internal rules, but not a stray bottom line */
.profile-page .profile-stats-grid { border-bottom-color: var(--el-line) !important; }
/* meta chips were inheriting a border-bottom from the parent's .flex rules */
.profile-page .flex.flex-wrap.gap-3.text-gray-700 > span { border-bottom-color: var(--el-line) !important; }

/* ---------- 13.3 navigation contrast ---------- */
.premium-nav a,
.desktop-version .premium-nav a,
.desktop-version .premium-nav .menu-item a,
.premium-nav .menu-item > a,
.premium-nav ul li a {
  color: #e8ebf2 !important;
  opacity: 1 !important;
}
.premium-nav a:hover,
.desktop-version .premium-nav a:hover,
.premium-nav ul li a:hover { color: var(--el-accent) !important; }

.pc-utility-row, .pc-utility-row span, .desktop-version .pc-utility-row { color: #b9c1d1 !important; }
.pc-utility-row a, .desktop-version .pc-utility-row a { color: #b9c1d1 !important; }
.pc-utility-row a:hover { color: var(--el-accent) !important; }

.mobile-menu-link, .mobile-menu-list a, .mobile-menu-nav a,
.mobile-menu-drawer a { color: #e8ebf2 !important; }
.mobile-menu-link:hover, .mobile-menu-drawer a:hover { color: var(--el-accent) !important; }

/* ---------- 13.4 remaining light-theme text utilities ---------- */
.profile-page .text-gray-400,
.profile-page .text-gray-700, .text-gray-700 { color: #b9c1d1 !important; }
.profile-page .text-purple-600, .profile-page .text-indigo-600,
.text-purple-600, .text-indigo-600 { color: var(--el-accent) !important; }
.profile-page .text-red-500 { color: var(--el-danger) !important; }
.profile-page .text-blue-500, .profile-page .text-green-500 { color: var(--el-accent) !important; }

/* links inside content should not be near-black */
.profile-page a:not(.contact-btn):not(.ex-tick) { color: var(--el-accent); }
.profile-page a:not(.contact-btn):hover { color: var(--el-accent-dark); }

/* ---------- 13.5 buttons keep readable labels ---------- */
.profile-page .contact-btn,
.profile-page .contact-btn * { color: #14161c !important; }

/* 13.6 — the shell kept the light hairline on the other three sides (only
   border-bottom was corrected first). Set every side to the dark token. */
.profile-page .bg-white,
.profile-page .bg-white.rounded-3xl,
.desktop-version .profile-page .bg-white,
.profile-page .rounded-3xl.shadow-2xl {
  border-color: var(--el-line) !important;
}
/* form controls in the header inherit the same token so nothing reads as a smudge */
.premium-search, .pc-location-select,
.desktop-version .premium-search, .desktop-version .pc-location-select {
  border-color: var(--el-line) !important;
  background: var(--el-surface-2) !important;
  color: var(--el-text) !important;
}
.pc-location-select option { background: var(--el-surface); color: var(--el-text); }

/* 13.7 — last light-theme hairlines: the gallery wrapper (.mb-6) and the thumb strip
   still carried rgba(21,19,26,.08) on all four sides. These containers need no border at all. */
.profile-page .mb-6,
.profile-page .profile-gallery-thumbs,
.desktop-version .profile-page .mb-6,
.desktop-version .profile-page .profile-gallery-thumbs {
  border: none !important;
}

/* ---------- header location chip ---------- */
.ex-loc {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 11px 4px 9px; border-radius: 999px;
  background: var(--el-surface-2); border: 1px solid var(--el-line);
  color: var(--el-text) !important; text-decoration: none !important;
  font-size: 12.5px; font-weight: 600; line-height: 1.6;
  transition: border-color .15s ease, color .15s ease;
}
.ex-loc:hover { border-color: var(--el-accent); color: var(--el-accent) !important; }
.ex-loc i { color: var(--el-accent); font-size: 11px; }
.ex-loc-name { white-space: nowrap; }
.ex-loc-count {
  background: var(--el-accent); color: #14161c;
  border-radius: 999px; padding: 1px 7px; font-size: 11px; font-weight: 800;
}
.ex-loc:hover .ex-loc-count { background: var(--el-accent-dark); }
@media (max-width: 700px) { .ex-loc-name { max-width: 12ch; overflow: hidden; text-overflow: ellipsis; } }

/* 13.8 — the .pc-utility-row span sweep in 13.3 was also hitting the count badge,
   painting gold-on-gold. Restore it with matching weight, and give the mobile header
   the same chip (its markup is a separate tree and had no location element at all). */
.ex-loc .ex-loc-count,
.pc-utility-row .ex-loc .ex-loc-count,
.desktop-version .pc-utility-row .ex-loc .ex-loc-count,
.mobile-header .ex-loc .ex-loc-count {
  color: #14161c !important;
  background: var(--el-accent) !important;
}
.ex-loc .ex-loc-name,
.pc-utility-row .ex-loc .ex-loc-name,
.desktop-version .pc-utility-row .ex-loc .ex-loc-name { color: var(--el-text) !important; }
.ex-loc:hover .ex-loc-name { color: var(--el-accent) !important; }

.mobile-header-loc { padding: 0 14px 10px; }
.mobile-header-loc .ex-loc { font-size: 13px; }

/* ============================================================
   14. AT A GLANCE  (main column, above About Me)
   Disclosure panel: what the listing states and what it omits.
   Colours come from the tokens already defined in section 1.
   ============================================================ */
.ex-glance .ex-glance-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 22px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--el-line);
}
.ex-glance-price strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem; line-height: 1; color: var(--el-accent);
  font-variant-numeric: tabular-nums;
}
.ex-glance-price strong.ex-glance-none {
  font-size: 1.25rem; color: var(--el-text-dim);
}
.ex-glance-price span { margin-left: 8px; font-size: .82rem; color: var(--el-text-dim); }
.ex-glance-where { margin-left: auto; text-align: right; font-size: .85rem; }
.ex-glance-where a { color: var(--el-accent); text-decoration: none; border-bottom: 1px solid transparent; }
.ex-glance-where a:hover { border-bottom-color: currentColor; }
.ex-glance-where em { display: block; font-style: normal; color: var(--el-text-dim); margin-top: 2px; }

.ex-glance-pkgs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px; margin-bottom: 18px;
}
.ex-glance-pkg {
  background: var(--el-surface-2); border: 1px solid var(--el-line);
  border-radius: 6px; padding: 9px 10px; text-align: center;
}
.ex-glance-pkg-l { display: block; font-size: .7rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--el-text-dim); margin-bottom: 3px; }
.ex-glance-pkg-v { display: block; font-weight: 600; color: var(--el-text);
  font-variant-numeric: tabular-nums; }
.ex-glance-pkg.is-missing { opacity: .5; }
.ex-glance-pkg.is-missing .ex-glance-pkg-v { color: var(--el-text-dim); font-weight: 400; }

.ex-glance-disc-head { font-size: .92rem; color: var(--el-text); margin-bottom: 10px; }
.ex-glance-disc-head strong { color: var(--el-accent); }
.ex-glance-checks {
  list-style: none; margin: 0 0 10px; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 6px 16px;
}
.ex-glance-checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--el-text);
}
.ex-glance-checks li i { width: 1em; font-size: .78rem; }
.ex-glance-checks li.yes i { color: var(--el-success); }
.ex-glance-checks li.no  { color: var(--el-text-dim); }
.ex-glance-checks li.no i { color: var(--el-text-dim); }
.ex-glance-note { font-size: .8rem; color: var(--el-text-dim); margin: 0; }

@media (max-width: 640px) {
  .ex-glance-where { margin-left: 0; text-align: left; width: 100%; }
  .ex-glance-price strong { font-size: 1.8rem; }
}
