/*
Theme Name: IE Escorts
Template: escorts-theme
Version: 0.1.0
Text Domain: ieescorts
*/

:root {
  --vs-ink: #181b23;
  --vs-muted: #667085;
  --vs-line: #e5e7eb;
  --vs-border: #e5e7eb;
  --vs-soft: #f6f7fb;
  --vs-card: #ffffff;
  --vs-accent: #e84b5f;
  --vs-accent-dark: #c92f46;
  --vs-gold: #f4b740;
  --vs-teal: #1e8b84;
  --vs-radius: 8px;
  --vs-shadow: 0 18px 45px rgba(24, 27, 35, 0.10);
  --vs-shadow-soft: 0 12px 30px rgba(24, 27, 35, 0.06);
}

* {
  box-sizing: border-box;
}

body.ieescorts-theme {
  margin: 0;
  color: var(--vs-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.ieescorts-theme a {
  color: inherit;
  text-decoration: none;
}

.vs-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.vs-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--vs-line);
  backdrop-filter: blur(14px);
}

.vs-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vs-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.vs-brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--vs-accent);
  box-shadow: 0 10px 20px rgba(232, 75, 95, 0.25);
}

.vs-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #384152;
  font-weight: 650;
}

.vs-menu .menu {
  display: contents;
}

.vs-menu li {
  list-style: none;
}

.vs-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
}

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

.vs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: #fff;
  color: var(--vs-ink);
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.vs-button--primary {
  border-color: var(--vs-accent);
  background: var(--vs-accent);
  color: #fff;
}

.vs-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
  background:
    linear-gradient(135deg, rgba(24, 27, 35, 0.92), rgba(24, 27, 35, 0.76)),
    url("assets/city-grid.svg") center/cover no-repeat;
  color: #fff;
}

.vs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: center;
}

.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vs-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.vs-hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.vs-search {
  margin-top: 30px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--vs-shadow);
}

.vs-field {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  color: #475467;
  background: #fff;
}

.vs-field input,
.vs-field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--vs-ink);
  font: inherit;
  background: transparent;
}

.vs-search .vs-button {
  min-height: 54px;
  padding-inline: 28px;
}

.vs-hero-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.vs-map-card {
  min-height: 390px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--vs-ink);
}

.vs-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.vs-map-head strong {
  display: block;
  font-size: 17px;
}

.vs-map-head span {
  color: var(--vs-muted);
  font-size: 13px;
}

.vs-map-body {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(229, 231, 235, 0.75) 1px, transparent 1px),
    linear-gradient(rgba(229, 231, 235, 0.75) 1px, transparent 1px),
    #f8fafc;
  background-size: 42px 42px;
}

.vs-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--vs-accent);
  box-shadow: 0 8px 20px rgba(232, 75, 95, 0.38);
}

.vs-pin:nth-child(1) { left: 18%; top: 28%; }
.vs-pin:nth-child(2) { left: 54%; top: 42%; background: var(--vs-teal); }
.vs-pin:nth-child(3) { left: 72%; top: 24%; background: var(--vs-gold); }
.vs-pin:nth-child(4) { left: 37%; top: 68%; }

.vs-section {
  padding: 64px 0;
}

.vs-section--soft {
  background: var(--vs-soft);
}

.vs-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.vs-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.vs-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--vs-muted);
}

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

.vs-category {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: var(--vs-card);
  box-shadow: 0 12px 30px rgba(24, 27, 35, 0.06);
}

.vs-category-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff0f2;
  color: var(--vs-accent);
  font-weight: 900;
}

.vs-category strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.vs-category span {
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-listing-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vs-filter-panel {
  position: sticky;
  top: 96px;
  padding: 20px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
}

.vs-filter-panel h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.vs-filter-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.vs-filter-row label {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.vs-filter-row select,
.vs-filter-row input {
  min-height: 42px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
}

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

.vs-listing-card {
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07);
}

.vs-listing-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(232, 75, 95, 0.18), rgba(30, 139, 132, 0.18)),
    url("assets/card-pattern.svg") center/cover no-repeat;
}

.vs-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  color: var(--vs-accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.vs-listing-body {
  padding: 16px;
}

.vs-listing-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.vs-listing-body p {
  margin: 0 0 14px;
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vs-meta span {
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--vs-soft);
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.vs-empty {
  padding: 28px;
  margin-top: 18px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: var(--vs-muted);
}

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

.vs-step {
  padding: 24px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
}

.vs-step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--vs-ink);
  color: #fff;
  font-weight: 850;
}

.vs-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.vs-step p {
  margin: 0;
  color: var(--vs-muted);
}

.vs-page {
  padding: 56px 0 80px;
}

.vs-page-card {
  max-width: 860px;
  padding: 34px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.06);
}

.ie-notfound {
  min-height: 68vh;
  display: flex;
  align-items: center;
}

.ie-notfound-card {
  max-width: 860px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("assets/city-grid.svg") center/cover no-repeat;
  box-shadow: var(--vs-shadow);
}

.ie-notfound-card h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.ie-notfound-card p:not(.vs-eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--vs-muted);
  font-size: 18px;
}

.ie-notfound-search {
  max-width: 720px;
  margin-top: 28px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
}

.ie-notfound-search input {
  min-height: 48px;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--vs-ink);
  background: transparent;
  font: inherit;
}

.ie-notfound-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vs-page-card--service {
  max-width: 900px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vs-page-card--service > div > h2,
.vs-page-card--service > div > h3 {
  margin-top: 0;
}

.vs-page-card--service .escorts-login-form,
.vs-page-card--service .escorts-register-form,
.vs-page-card--service .escorts-listing-form {
  max-width: 620px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vs-shadow);
}

.vs-page-card--service .escorts-login-form h2,
.vs-page-card--service .escorts-register-form h2,
.vs-page-card--service .escorts-listing-form h2 {
  margin-top: 0;
  font-size: 32px;
}

.vs-page-card--service label {
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.vs-page-card--service input:not([type="submit"]):not([type="checkbox"]),
.vs-page-card--service select,
.vs-page-card--service textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  color: var(--vs-ink);
  background: #fff;
  font: inherit;
}

.vs-page-card--service button,
.vs-page-card--service input[type="submit"],
.vs-page-card--service .button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--vs-accent);
  border-radius: 8px;
  background: var(--vs-accent);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.vs-eyebrow--dark {
  color: var(--vs-accent);
}

.vs-page-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.vs-page-intro h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.vs-page-intro p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--vs-muted);
  font-size: 18px;
}

.vs-result-note {
  padding: 10px 14px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  color: var(--vs-muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.vs-directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.75fr) auto auto;
  gap: 10px;
  margin-bottom: 26px;
  padding: 12px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: var(--vs-soft);
}

.vs-directory-toolbar .vs-field {
  background: #fff;
}

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

.vs-city-content,
.vs-city-faq {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--vs-border);
}

.vs-city-content h2,
.vs-city-faq h2 {
  margin: 8px 0 16px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
}

.vs-city-content__copy {
  display: grid;
  gap: 14px;
  max-width: 920px;
  color: var(--vs-muted);
  font-size: 16px;
  line-height: 1.75;
}

.vs-city-content__copy p {
  margin: 0;
}

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

.vs-city-faq__item {
  border: 1px solid var(--vs-border);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--vs-shadow-soft);
}

.vs-city-faq__item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0;
}

.vs-city-faq__item p {
  margin: 0;
  color: var(--vs-muted);
  line-height: 1.65;
}

.vs-profile-card {
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07);
}

.vs-profile-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--vs-soft);
}

.vs-profile-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.vs-profile-card:hover .vs-profile-card__media img {
  transform: scale(1.03);
}

.vs-profile-card__body {
  padding: 18px;
}

.vs-profile-card__eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--vs-muted);
  font-size: 13px;
  font-weight: 700;
}

.vs-profile-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.vs-profile-card p {
  min-height: 44px;
  margin: 0 0 16px;
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-empty--large {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 42px;
}

.vs-empty--large strong {
  color: var(--vs-ink);
  font-size: 22px;
}

.vs-empty--large span {
  max-width: 620px;
}

.vs-empty--large .vs-button {
  margin-top: 8px;
}

.vs-pagination {
  margin-top: 28px;
}

.vs-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-pagination a,
.vs-pagination span {
  display: grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  color: var(--vs-ink);
  font-weight: 750;
}

.vs-pagination .current {
  border-color: var(--vs-accent);
  background: var(--vs-accent);
  color: #fff;
}

.vs-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--vs-accent-dark) !important;
  font-weight: 750;
}

.vs-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.vs-profile-gallery__main {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--vs-soft);
}

.vs-profile-gallery__main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vs-profile-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.vs-profile-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: var(--vs-soft);
}

.vs-profile-summary {
  padding: 28px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vs-shadow);
}

.vs-badge--inline {
  position: static;
  display: inline-flex;
  margin-bottom: 18px;
}

.vs-profile-summary h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
}

.vs-profile-location {
  margin: 14px 0 18px;
  color: var(--vs-muted);
  font-size: 17px;
  font-weight: 700;
}

.vs-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.vs-profile-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 34px;
}

.vs-profile-copy,
.vs-profile-side {
  padding: 28px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
}

.vs-profile-copy h2,
.vs-profile-side h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.1;
}

.vs-profile-side {
  align-self: start;
  background: var(--vs-soft);
}

.vs-profile-side p,
.vs-muted-copy {
  color: var(--vs-muted);
}

.vs-richtext p:first-child {
  margin-top: 0;
}

.vs-footer {
  padding: 34px 0;
  border-top: 1px solid var(--vs-line);
  background: #11141a;
  color: rgba(255, 255, 255, 0.72);
}

.vs-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vs-footer strong {
  color: #fff;
}

.vs-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.vs-footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.vs-footer-links a:hover,
.vs-footer-links a:focus {
  color: #fff;
}

@media (max-width: 980px) {
  .vs-hero-grid,
  .vs-listing-layout,
  .vs-profile-hero,
  .vs-profile-content {
    grid-template-columns: 1fr;
  }

  .vs-category-grid,
  .vs-card-grid,
  .vs-results-grid,
  .vs-city-faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-filter-panel {
    position: static;
  }
}

@media (max-width: 1100px) {
  .vs-nav {
    flex-wrap: wrap;
  }

  .vs-menu {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 720px) {
  .vs-shell {
    width: min(100% - 24px, 1180px);
  }

  .vs-nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .vs-menu {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
  }

  .vs-nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .vs-nav-actions .vs-button {
    width: 100%;
    min-width: 0;
  }

  .vs-hero {
    padding-top: 46px;
  }

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

  .vs-category-grid,
  .vs-card-grid,
  .vs-results-grid,
  .vs-city-faq__grid,
  .vs-steps {
    grid-template-columns: 1fr;
  }

  .vs-page-intro {
    align-items: start;
    flex-direction: column;
  }

  .vs-directory-toolbar {
    grid-template-columns: 1fr;
  }

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

  .vs-footer-row {
    align-items: start;
    flex-direction: column;
  }
}

.vs-topbar {
  min-height: 34px;
  background: #11141a;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.vs-topbar__row {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vs-brand-accent {
  color: var(--vs-accent);
}

.vs-account-link {
	position: relative;
	width: 42px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 1px solid var(--vs-line);
	border-radius: 50%;
  color: var(--vs-ink) !important;
  font-size: 0;
}

.vs-account-link::before {
	content: "";
	position: absolute;
	top: 10px;
	width: 8px;
	height: 8px;
	border: 1px solid var(--vs-ink);
	border-radius: 50%;
}

.vs-account-link::after {
	content: "";
	position: absolute;
	bottom: 9px;
	width: 16px;
	height: 8px;
	border: 1px solid var(--vs-ink);
	border-bottom: 0;
	border-radius: 12px 12px 0 0;
}

.vs-add-button span {
  margin-right: 8px;
  font-size: 22px;
  line-height: 1;
}

.vs-discovery-hero,
.vs-category-banner {
  position: relative;
  overflow: visible;
  background-color: #26363c;
  background-image: url("assets/city-grid.svg");
  background-position: center;
  background-size: cover;
}

.vs-discovery-hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  color: #fff;
}

.vs-discovery-hero__veil,
.vs-category-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 20, 26, 0.42), rgba(17, 20, 26, 0.82));
}

.vs-discovery-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 80px 0 120px;
  text-align: center;
}

.vs-discovery-hero h1 {
  width: min(100%, 720px);
  margin: 10px 0 0;
  color: #fff;
  font-size: 56px;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.vs-hero-swoosh {
  display: block;
  width: 120px;
  height: 18px;
  margin: 16px 0 22px;
  border-top: 5px solid var(--vs-accent);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.vs-hero-search {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.vs-hero-field {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--vs-line);
  border-radius: 50px;
  color: var(--vs-muted);
}

.vs-hero-field__icon {
  color: var(--vs-accent);
  font-weight: 900;
}

.vs-hero-field input,
.vs-hero-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--vs-ink);
  background: transparent;
  font: inherit;
}

.vs-hero-search__button {
  min-width: 140px;
  border-radius: 50px;
}

.vs-section--directory {
  padding-top: 92px;
}

.vs-section-head--center {
  align-items: center;
}

.vs-section-head--center > div {
  text-align: left;
}

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

.vs-design-card {
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07);
}

.vs-design-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(232, 75, 95, 0.32), rgba(30, 139, 132, 0.24)), url("assets/card-pattern.svg") center/cover;
}

.vs-design-card__body {
  padding: 18px;
}

.vs-design-card__label {
  color: var(--vs-accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vs-design-card h3 {
  margin: 8px 0;
  font-size: 21px;
}

.vs-design-card p {
  min-height: 44px;
  margin: 0 0 16px;
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-empty--center {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 22px;
  text-align: center;
}

.vs-empty--center strong {
  color: var(--vs-ink);
}

.vs-text-link {
  color: var(--vs-accent-dark) !important;
  font-weight: 800;
}

.vs-category--wide {
  position: relative;
  min-height: 156px;
}

.vs-category-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--vs-accent);
  font-size: 22px;
  font-weight: 900;
}

.vs-steps--numbered .vs-step-number {
  width: auto;
  min-width: 44px;
  padding: 0 9px;
  border-radius: 50px;
  background: #fff0f2;
  color: var(--vs-accent);
}

.vs-category-banner {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: #fff;
}

.vs-category-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 60px 0;
  text-align: center;
}

.vs-category-banner h1 {
  width: min(100%, 760px);
  margin: 6px 0 14px;
  color: #fff;
  font-size: 48px;
  overflow-wrap: break-word;
}

.vs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.vs-breadcrumb a {
  color: #fff !important;
}

.vs-breadcrumb--dark {
  margin-bottom: 24px;
  color: var(--vs-muted);
}

.vs-breadcrumb--dark a {
  color: var(--vs-accent-dark) !important;
}

.vs-section--catalog {
  background: #f3f4f6;
}

.vs-catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.vs-filter-panel--catalog {
  position: static;
  padding: 0;
  box-shadow: 0 12px 30px rgba(24, 27, 35, 0.06);
}

.vs-filter-panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid var(--vs-line);
}

.vs-filter-panel__title h2 {
  margin: 0;
  font-size: 22px;
}

.vs-filter-mark {
  width: 42px;
  height: 3px;
  background: var(--vs-accent);
}

.vs-filter-panel--catalog form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.vs-filter-block {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.vs-filter-block input,
.vs-filter-block select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.vs-catalog-main {
  min-width: 0;
}

.vs-catalog-toolbar,
.vs-active-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--vs-line);
  background: #fff;
}

.vs-catalog-toolbar {
  border-radius: 8px;
}

.vs-catalog-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-catalog-toolbar__actions button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  color: var(--vs-muted);
  cursor: pointer;
}

.vs-catalog-toolbar__actions button.is-active {
  border-color: var(--vs-accent);
  background: var(--vs-accent);
  color: #fff;
}

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

.vs-filter-row .vs-filter-block {
  min-width: 0;
}

.vs-results-grid--catalog.is-list {
  grid-template-columns: 1fr;
}

.vs-results-grid--catalog.is-list .vs-profile-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.vs-results-grid--catalog.is-list .vs-profile-card__media {
  min-height: 220px;
  aspect-ratio: auto;
}

.vs-pagination {
  margin-top: 28px;
}

.vs-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-pagination a,
.vs-pagination span {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  color: var(--vs-ink);
  font-weight: 750;
}

.vs-pagination .current {
  border-color: var(--vs-accent);
  background: var(--vs-accent);
  color: #fff;
}

.vs-active-filters {
  justify-content: flex-start;
  margin-top: 12px;
  border-radius: 8px;
}

.vs-active-filters b {
  padding: 7px 10px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  color: var(--vs-accent-dark);
  font-size: 13px;
}

.vs-active-filters a {
  margin-left: auto;
  color: var(--vs-accent-dark) !important;
  font-weight: 750;
}

.vs-results-grid--catalog,
.vs-design-grid--catalog {
  margin-top: 18px;
}

.vs-detail-preview-page {
  background: #f3f4f6;
}

.vs-detail-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 8px;
  overflow: hidden;
  border-radius: 8px;
}

.vs-detail-gallery__tile {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 20, 26, 0.06), rgba(232, 75, 95, 0.28)), url("assets/card-pattern.svg") center/cover;
}

.vs-detail-gallery__tile--large {
  grid-row: 1 / 3;
  background-color: #26363c;
}

.vs-detail-gallery__tile--warm {
  background-color: #d4a18a;
}

.vs-detail-gallery__tile--teal {
  background-color: #5faaa1;
}

.vs-detail-gallery__tile--light {
  background-color: #e6e1d7;
}

.vs-gallery-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--vs-ink);
  font-size: 12px;
  font-weight: 800;
}

.vs-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 24px;
}

.vs-detail-main,
.vs-detail-side-card {
  padding: 28px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
}

.vs-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vs-detail-tags span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff0f2;
  color: var(--vs-accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.vs-detail-main h1 {
  margin: 18px 0 8px;
  font-size: 48px;
  line-height: 1.05;
}

.vs-detail-subline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--vs-muted);
}

.vs-detail-subline strong {
  color: var(--vs-teal);
}

.vs-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}

.vs-detail-section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--vs-line);
}

.vs-detail-section h2,
.vs-detail-side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.vs-detail-section p,
.vs-detail-side-card p {
  color: var(--vs-muted);
}

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

.vs-amenities span {
  padding: 12px;
  border-radius: 8px;
  background: var(--vs-soft);
  color: #344054;
  font-weight: 650;
}

.vs-map-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(229, 231, 235, 0.75) 1px, transparent 1px), linear-gradient(rgba(229, 231, 235, 0.75) 1px, transparent 1px), #f8fafc;
  background-size: 42px 42px;
  color: var(--vs-muted);
  text-align: center;
}

.vs-detail-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.vs-detail-side-card:first-child {
  background: var(--vs-soft);
}

.vs-profile-single {
  background: #f3f4f6;
}

.vs-profile-single__hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.vs-profile-single__media,
.vs-profile-single__summary {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07);
}

.vs-profile-single__media {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.vs-profile-single__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vs-profile-avatar {
  min-height: 420px;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232, 75, 95, 0.18), rgba(30, 139, 132, 0.24)),
    url("assets/card-pattern.svg") center/cover;
}

.vs-profile-avatar span {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--vs-accent-dark);
  font-size: 54px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(24, 27, 35, 0.15);
}

.vs-profile-single__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.vs-profile-single__summary h1 {
  margin: 14px 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.vs-contact-result {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #ffd6dc;
  border-radius: 8px;
  background: #fff5f7;
  color: var(--vs-ink);
}

.vs-action-disclosure,
.vs-report-disclosure {
  margin-top: 24px;
  border-top: 1px solid var(--vs-line);
  padding-top: 16px;
}

.vs-action-disclosure summary,
.vs-report-disclosure summary {
  cursor: pointer;
  font-size: 14px;
  color: var(--vs-muted);
  padding: 8px 0;
}

.vs-profile-request-form,
.vs-report-form {
  display: grid;
  gap: 16px;
  margin: 20px 0;
  min-width: 0;
}

.vs-profile-request-form label,
.vs-report-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
}

.vs-profile-request-form input:not([type="hidden"]),
.vs-profile-request-form textarea,
.vs-report-form input:not([type="hidden"]),
.vs-report-form select,
.vs-report-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--vs-line);
  border-radius: 6px;
  background: #fff;
  color: var(--vs-ink);
  font: inherit;
}

.vs-profile-request-form textarea,
.vs-report-form textarea {
  resize: vertical;
}

.vs-profile-request-form .vs-report-trap,
.vs-report-form .vs-report-trap {
  display: none;
}

.vs-profile-request-form .vs-button,
.vs-report-form .vs-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  max-width: 100%;
  white-space: normal;
}

.vs-report-note,
.vs-profile-request-result,
.vs-report-result {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.vs-profile-request-result,
.vs-report-result {
  color: #17624b;
}

.vs-profile-request-result.is-error,
.vs-report-result.is-error {
  color: #a02737;
}

.vs-profile-request-form [hidden],
.vs-report-form [hidden] {
  display: none;
}

.vs-page-card.vs-policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.vs-policy-page h1 {
  font-size: 36px;
  line-height: 1.2;
}

.vs-policy-page h2 {
  margin: 32px 0 12px;
  font-size: 23px;
  line-height: 1.3;
}

.vs-policy-date {
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-profile-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.vs-profile-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vs-line);
}

.vs-profile-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.vs-profile-facts dt,
.vs-profile-facts dd {
  margin: 0;
}

.vs-profile-facts dt {
  color: var(--vs-muted);
}

.vs-profile-facts dd {
  color: var(--vs-ink);
  font-weight: 800;
  text-align: right;
}

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

.vs-profile-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.vs-hours {
  display: grid;
  gap: 10px;
  margin: 0;
}

.vs-hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vs-line);
}

.vs-hours dt,
.vs-hours dd {
  margin: 0;
  color: var(--vs-muted);
  font-size: 14px;
}

.vs-hours dd {
  color: var(--vs-teal);
  font-weight: 750;
}

@media (max-width: 980px) {
  .vs-hero-search,
  .vs-catalog-layout,
  .vs-profile-single__hero,
  .vs-detail-layout {
    grid-template-columns: 1fr;
  }

  .vs-hero-search__button {
    width: 100%;
  }

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

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

@media (max-width: 720px) {
  .vs-topbar__row {
    justify-content: center;
  }

  .vs-topbar__row span:last-child {
    display: none;
  }

  .vs-discovery-hero {
    min-height: 660px;
  }

  .vs-discovery-hero h1,
  .vs-category-banner h1,
  .vs-detail-main h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.12;
  }

  .vs-discovery-hero .vs-eyebrow,
  .vs-category-banner .vs-eyebrow {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .vs-hero-search {
    padding: 16px;
  }

  .vs-design-grid,
  .vs-profile-gallery-grid,
  .vs-detail-sidebar,
  .vs-amenities {
    grid-template-columns: 1fr;
  }

  .vs-profile-single__media,
  .vs-profile-avatar {
    min-height: 320px;
  }

  .vs-profile-single__summary {
    padding: 22px;
  }

  .vs-profile-single__summary h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .vs-catalog-toolbar,
  .vs-active-filters {
    align-items: flex-start;
    flex-direction: column;
  }

  .vs-active-filters a {
    margin-left: 0;
  }

  .vs-detail-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 110px;
  }

  .vs-detail-gallery__tile--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .vs-results-grid--catalog.is-list .vs-profile-card {
    grid-template-columns: 1fr;
  }

  .vs-results-grid--catalog.is-list .vs-profile-card__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* Functional parent templates keep their handlers; this layer gives them the new shell. */
.create-listing-page,
.profile-dashboard,
.profile-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.create-listing-page > .bg-white,
.profile-dashboard > .bg-white,
.profile-dashboard .dashboard-tab-content > .bg-white,
.profile-page .profile-header-card,
.profile-page .info-card {
  border: 1px solid var(--vs-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07) !important;
}

.create-listing-page > .bg-white,
.profile-dashboard > .bg-white {
  padding: 34px !important;
}

.create-listing-page h1,
.profile-dashboard > h1,
.profile-page .profile-title {
  color: var(--vs-ink) !important;
  font-size: 40px !important;
  line-height: 1.08 !important;
}

.create-listing-page h2,
.profile-dashboard h2,
.profile-page .section-title {
  color: var(--vs-ink) !important;
}

.create-listing-page .section {
  padding: 28px 0;
  border-top: 1px solid var(--vs-line);
}

.create-listing-page .section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.create-listing-page label,
.profile-dashboard label,
.profile-page label {
  color: #344054;
  font-weight: 750;
}

.create-listing-page input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.create-listing-page select,
.create-listing-page textarea,
.profile-dashboard input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.profile-dashboard select,
.profile-dashboard textarea,
.profile-page input,
.profile-page select,
.profile-page textarea {
  min-height: 44px;
  border: 1px solid var(--vs-line) !important;
  border-radius: 8px !important;
  color: var(--vs-ink) !important;
  background: #fff !important;
  box-shadow: none !important;
  font: inherit;
}

.create-listing-page .button,
.create-listing-page button,
.profile-dashboard .button,
.profile-dashboard button,
.profile-page .button,
.profile-page button,
.profile-page .premium-btn,
.profile-page .contact-btn {
  min-height: 42px;
  border-radius: 8px !important;
  border: 1px solid var(--vs-accent) !important;
  background: var(--vs-accent) !important;
  color: #fff !important;
  font: inherit;
  font-weight: 750;
}

.profile-dashboard .dashboard-tabs {
  padding: 6px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
}

.profile-dashboard .dashboard-tab {
  border: 0 !important;
  border-radius: 6px;
  color: var(--vs-muted);
}

.profile-dashboard .dashboard-tab.active,
.profile-dashboard .dashboard-tab:hover {
  border: 0 !important;
  background: #fff0f2;
  color: var(--vs-accent-dark);
}

.profile-dashboard .border,
.profile-dashboard .border-gray-200 {
  border-color: var(--vs-line) !important;
  border-radius: 8px !important;
}

.profile-page .profile-header-card {
  padding: 28px !important;
}

.profile-page .profile-header-row {
  gap: 12px;
}

.profile-page .profile-stats-grid {
  gap: 10px;
}

.profile-page .stats-item {
  padding: 18px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: var(--vs-soft);
}

.profile-page .stats-number {
  color: var(--vs-accent-dark) !important;
  font-size: 24px;
  font-weight: 850;
}

.profile-page .profile-gallery-main {
  overflow: hidden;
  border-radius: 8px;
  background: var(--vs-soft);
}

.profile-page .profile-gallery-main .main-image {
  width: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.profile-page .profile-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.profile-page .profile-gallery-thumb {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 8px;
}

.profile-page .profile-gallery-thumb .thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile-page .profile-gallery-thumb:has(.thumbnail.active) {
  border-color: var(--vs-accent);
}

.profile-page .service-badge,
.profile-page .verified-badge,
.profile-page .available-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #ffd2d8;
  border-radius: 50px;
  background: #fff0f2;
  color: var(--vs-accent-dark) !important;
  font-size: 13px;
  font-weight: 750;
}

.profile-page .price-card {
  padding: 16px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: var(--vs-soft);
}

.profile-page .price-amount {
  color: var(--vs-accent-dark) !important;
  font-size: 24px;
  font-weight: 850;
}

.profile-page .info-card {
  padding: 24px !important;
}

@media (max-width: 720px) {
  .create-listing-page,
  .profile-dashboard,
  .profile-page {
    width: min(100% - 24px, 1180px);
    padding: 32px 0 56px;
  }

  .create-listing-page > .bg-white,
  .profile-dashboard > .bg-white,
  .profile-page .profile-header-card,
  .profile-page .info-card {
    padding: 20px !important;
  }

  .create-listing-page h1,
  .profile-dashboard > h1,
  .profile-page .profile-title {
    font-size: 32px !important;
  }

  .profile-page .profile-gallery-main .main-image {
    min-height: 280px;
  }
}

/* Account and booking surfaces share the directory shell. */
body.page-template-page-dashboard,
body.page-template-page-booking,
body.page-template-page-profile-settings,
body.page-template-page-edit-listing {
  background: var(--vs-soft);
}

.profile-dashboard .dashboard-tab-content > .bg-white,
.profile-dashboard .dashboard-tab-content > .eb-dashboard,
.booking-calendar-page > .bg-white,
.booking-calendar-page > div.bg-white {
  border: 1px solid var(--vs-line) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07) !important;
}

.profile-dashboard .dashboard-tab-content .button-small,
.profile-dashboard .dashboard-tab-content .button,
.booking-calendar-page .button {
  min-height: 38px;
  border-radius: 8px !important;
  font-weight: 750;
}

.profile-dashboard .dashboard-tab-content table {
  width: 100%;
  border-collapse: collapse;
}

.profile-dashboard .dashboard-tab-content th,
.profile-dashboard .dashboard-tab-content td {
  padding: 12px 14px;
  border-color: var(--vs-line) !important;
  text-align: left;
  vertical-align: top;
}

.profile-dashboard .dashboard-tab-content th {
  color: var(--vs-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.booking-calendar-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.booking-calendar-page h1 {
  color: var(--vs-ink);
  font-size: 40px;
  line-height: 1.08;
}

.profile-settings-form,
#escorts-profile-settings-form {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--vs-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 27, 35, 0.07);
}

@media (max-width: 720px) {
  .booking-calendar-page {
    width: min(100% - 24px, 1180px);
    padding: 32px 0 56px;
  }

  .booking-calendar-page h1 {
    font-size: 32px;
  }

  .profile-settings-form,
  #escorts-profile-settings-form {
    padding: 20px;
  }

  .profile-dashboard .dashboard-tab-content {
    overflow-x: auto;
  }
}

/* IE Escorts V2 starter: editorial commerce-inspired directory shell. */
body.ieescorts-theme {
  --vs-ink: #111318;
  --vs-muted: #6b7280;
  --vs-line: #dedede;
  --vs-border: #dedede;
  --vs-soft: #f4f2ee;
  --vs-card: #ffffff;
  --vs-accent: #111318;
  --vs-accent-dark: #000000;
  --vs-gold: #c9a46a;
  --vs-teal: #236a63;
  --vs-shadow: 0 18px 42px rgba(17, 19, 24, 0.09);
  --vs-shadow-soft: 0 12px 30px rgba(17, 19, 24, 0.06);
  background: #f7f6f3;
}

body.ieescorts-theme .vs-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #dfdfdf;
  box-shadow: 0 8px 30px rgba(17, 19, 24, 0.04);
}

.vs-topbar {
  border-bottom: 1px solid #222;
  background: #111318;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.vs-topbar__row {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vs-promo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #e6e0d7;
  background: #fbfaf7;
}

.vs-promo-row a {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 14px;
  border-right: 1px solid #e6e0d7;
  color: #454545;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.vs-promo-row a:last-child {
  border-right: 0;
}

.vs-nav {
  min-height: 84px;
}

.vs-brand {
  min-width: 184px;
  color: #111318;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 800;
}

.vs-brand-mark {
  background: #111318;
  box-shadow: none;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.vs-brand-accent {
  color: #d84a5b;
}

.vs-menu a {
  color: #2f3237;
  font-size: 15px;
  font-weight: 750;
}

.vs-nav-actions {
  gap: 12px;
}

.vs-nav-search {
  width: min(280px, 28vw);
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
}

.vs-nav-search input {
  min-width: 0;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: #111318;
  font: inherit;
}

.vs-nav-search button {
  border: 0;
  padding: 0 14px;
  background: #111318;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.vs-account-link {
  font-weight: 800;
}

.vs-button,
.vs-button--primary {
  border-radius: 8px;
}

.vs-button--primary,
.vs-add-button {
  border-color: #111318;
  background: #111318;
  color: #fff;
}

.vs-main {
  background: #f7f6f3;
}

.ie-hero {
  padding: 68px 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.9), rgba(17, 19, 24, 0.34)),
    radial-gradient(circle at 78% 30%, rgba(201, 164, 106, 0.28), transparent 32%),
    #1a1b1f;
}

.ie-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: stretch;
}

.ie-hero__copy {
  color: #fff;
}

.ie-hero__copy h1 {
  max-width: 790px;
  margin: 10px 0 16px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

.ie-hero__copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.ie-hero-search {
  max-width: 920px;
  margin-top: 30px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.ie-hero-search .vs-hero-field {
  background: #f7f6f3;
}

.ie-hero__panel {
  display: grid;
  gap: 12px;
  align-content: end;
}

.ie-hero__panel div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.ie-hero__panel strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.ie-hero__panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.ie-ad-band {
  padding: 28px 0;
  background: #f7f6f3;
}

.ie-ad-band--catalog {
  padding-bottom: 0;
}

.ie-ad-slot,
.eb-placeholder {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px dashed #b9b3aa;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.05), rgba(201, 164, 106, 0.12)),
    #fff;
  color: #525252;
  text-align: center;
}

.ie-ad-slot span,
.eb-adlabel {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ie-ad-slot strong {
  color: #111318;
}

.ie-ad-slot--wide {
  min-height: 96px;
}

.ie-ad-slot--profile,
.eb-profile-banner {
  min-height: 160px;
}

.ie-collection-section,
.ie-listing-section,
.vs-section--catalog {
  background: #f7f6f3;
}

.ie-collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ie-collection-card {
  min-height: 178px;
  align-content: space-between;
  border-color: #e1ded8;
  background: #fff;
}

.ie-collection-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

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

.ie-proof-grid article {
  padding: 28px;
  border: 1px solid #e1ded8;
  border-radius: 8px;
  background: #fff;
}

.ie-proof-grid span {
  color: #c9a46a;
  font-weight: 900;
}

.ie-proof-grid h3 {
  margin: 12px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.vs-category-banner {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.88), rgba(17, 19, 24, 0.44)),
    radial-gradient(circle at 80% 20%, rgba(201, 164, 106, 0.32), transparent 34%),
    #111318;
}

.vs-category-banner h1,
.vs-section-head h2,
.vs-detail-main h2,
.vs-detail-side-card h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.vs-catalog-layout {
  grid-template-columns: 292px minmax(0, 1fr);
  align-items: start;
}

.vs-filter-panel--catalog {
  position: sticky;
  top: 140px;
  overflow: hidden;
  border-color: #e1ded8;
  background: #fff;
}

.vs-filter-panel__title {
  border-bottom: 1px solid #e1ded8;
  background: #111318;
  color: #fff;
}

.vs-filter-panel--catalog form {
  background: #fff;
}

.vs-filter-block input,
.vs-filter-block select,
.vs-filter-block textarea,
.vs-hero-field input,
.vs-hero-field select {
  min-height: 46px;
  border-color: #ddd6cd;
}

.vs-catalog-toolbar {
  border-color: #e1ded8;
  background: #fff;
}

.vs-profile-card {
  border-color: #e1ded8;
  box-shadow: 0 12px 26px rgba(17, 19, 24, 0.06);
}

.vs-profile-card__media {
  aspect-ratio: 4 / 5;
}

.vs-profile-card__body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.vs-meta span,
.vs-detail-tags span,
.vs-amenities span {
  border-color: #e6e0d7;
  background: #fbfaf7;
  color: #34363a;
}

.vs-profile-single {
  background: #f7f6f3;
}

.vs-profile-single__hero {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.vs-profile-single__media,
.vs-profile-single__summary,
.vs-detail-section,
.vs-detail-side-card {
  border-color: #e1ded8;
  background: #fff;
}

.vs-profile-single__summary h1 {
  font-family: Georgia, "Times New Roman", serif;
}

.vs-detail-sidebar .eb-profile-banner,
.vs-detail-sidebar .ie-ad-slot--profile {
  border-radius: 8px;
  background: #fff;
}

.vs-empty--large {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 34px;
  border: 1px solid #e1ded8;
  background: #fff;
}

.vs-empty--large strong {
  color: #111318;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

@media (max-width: 1120px) {
  .vs-nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .vs-nav-search {
    width: min(100%, 360px);
  }

  .ie-hero__grid,
  .vs-catalog-layout,
  .vs-profile-single__hero {
    grid-template-columns: 1fr;
  }

  .vs-filter-panel--catalog {
    position: static;
  }
}

@media (max-width: 860px) {
  .vs-topbar__row,
  .vs-promo-row {
    grid-template-columns: 1fr;
  }

  .vs-topbar__row {
    display: grid;
    padding: 8px 0;
    text-align: center;
  }

  .vs-promo-row a {
    border-right: 0;
    border-bottom: 1px solid #e6e0d7;
  }

  .vs-menu {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .vs-nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .vs-nav-search {
    width: 100%;
    order: 3;
  }

  .ie-hero {
    padding: 44px 0;
  }

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

  .ie-collection-grid,
  .ie-proof-grid,
  .vs-detail-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Vogue-style rebuild for the IE starter theme. */
body.ieescorts-theme {
  background: #f7f5f0;
  color: #191916;
}

.ie-vogue-header {
  position: relative;
  z-index: 40;
  border-bottom: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.ie-vogue-top {
  background: #171714;
  color: #fff;
  font-size: 13px;
}

.ie-vogue-top__row {
  min-height: 38px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 18px;
}

.ie-vogue-social,
.ie-vogue-locale,
.ie-vogue-actions,
.ie-vogue-top__promo,
.ie-vogue-ticker__track {
  display: flex;
  align-items: center;
}

.ie-vogue-social {
  gap: 8px;
}

.ie-vogue-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ie-vogue-top__promo {
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.ie-vogue-top__promo strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ie-vogue-locale {
  justify-content: flex-end;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.ie-vogue-nav {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(360px, 1.2fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 24px;
}

.ie-vogue-brand {
  display: inline-flex;
  align-items: baseline;
  color: #171714;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 700;
  line-height: 0.88;
  white-space: nowrap;
}

.ie-vogue-brand span {
  color: #1f1f1c;
}

.ie-vogue-brand em {
  color: #c7a66b;
  font-style: italic;
}

.ie-vogue-menu {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.ie-vogue-menu a {
  position: relative;
  padding: 36px 0;
}

.ie-vogue-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: #171714;
  transition: transform 0.18s ease;
}

.ie-vogue-menu a:hover::after,
.ie-vogue-menu a:focus-visible::after {
  transform: scaleX(1);
}

.ie-vogue-actions {
  justify-content: flex-end;
  gap: 12px;
}

.ie-vogue-search {
  width: min(230px, 100%);
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid #ded9ce;
  background: #fff;
}

.ie-vogue-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: #171714;
  background: transparent;
  font: inherit;
}

.ie-vogue-search button,
.ie-vogue-icon-link,
.ie-vogue-post-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #171714;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.ie-vogue-search button {
  border-left: 1px solid #ded9ce;
  font-size: 12px;
  text-transform: uppercase;
}

.ie-vogue-post-link {
  background: #171714;
  color: #fff;
}

.ie-vogue-ticker {
  overflow-x: auto;
  background: #171714;
  color: #fff;
}

.ie-vogue-ticker__track {
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: clamp(28px, 6vw, 88px);
  min-height: 46px;
  padding: 0 24px;
}

.ie-vogue-ticker a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ie-vogue-main {
  background: #f7f5f0;
}

.ie-vogue-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 180px));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #171714;
  color: #fff;
}

.ie-vogue-hero__media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ie-vogue-hero__media::after,
.ie-vogue-shop-hero__veil {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 14, 0.42);
}

.ie-vogue-hero__panel {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.ie-vogue-hero__panel--left {
  background:
    linear-gradient(140deg, rgba(17, 17, 14, 0.25), rgba(17, 17, 14, 0.7)),
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.45), transparent 12%),
    radial-gradient(circle at 62% 62%, rgba(199, 166, 107, 0.52), transparent 24%),
    linear-gradient(135deg, #d7c2a5, #7d6b5a 45%, #24221f);
}

.ie-vogue-hero__panel--right {
  background:
    linear-gradient(210deg, rgba(17, 17, 14, 0.18), rgba(17, 17, 14, 0.66)),
    radial-gradient(circle at 66% 22%, rgba(255, 255, 255, 0.34), transparent 14%),
    radial-gradient(circle at 42% 74%, rgba(199, 166, 107, 0.45), transparent 26%),
    linear-gradient(45deg, #23211f, #77604f 48%, #d8c3a4);
}

.ie-vogue-hero__content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.ie-vogue-eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ie-vogue-eyebrow--dark {
  color: #8a7658;
}

.ie-vogue-hero h1,
.ie-vogue-shop-hero h1,
.ie-vogue-product-hero h1,
.ie-vogue-feature h2,
.ie-vogue-section-head h2,
.ie-vogue-product__summary h1,
.ie-vogue-tabs__panel h2,
.ie-vogue-editorial h3,
.ie-vogue-sidebar__widget h2,
.ie-vogue-footer__column h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.ie-vogue-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(48px, 7vw, 106px);
}

.ie-vogue-hero p {
  max-width: 710px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.6vw, 22px);
}

.ie-vogue-hero__actions,
.ie-vogue-feature__actions,
.ie-vogue-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ie-vogue-hero__actions {
  justify-content: center;
  margin-top: 34px;
}

.ie-vogue-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #171714;
  background: #fff;
  color: #171714;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ie-vogue-button--dark {
  background: #171714;
  color: #fff;
}

.ie-vogue-button--light {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.94);
  color: #171714;
}

.ie-vogue-categories {
  background: #f7f5f0;
  border-bottom: 1px solid #ddd6c8;
}

.ie-vogue-categories__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.ie-vogue-category {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid #ddd6c8;
  background: #f7f5f0;
}

.ie-vogue-category:first-child {
  border-left: 1px solid #ddd6c8;
}

.ie-vogue-category span {
  color: #9d8763;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.ie-vogue-category strong {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.ie-ad-band--vogue,
.ie-ad-band--catalog {
  padding: 34px 0;
  background: #f7f5f0;
}

.ie-vogue-feature,
.ie-vogue-products,
.ie-vogue-shop,
.ie-vogue-product,
.ie-vogue-editorial {
  padding: clamp(54px, 7vw, 96px) 0;
  background: #f7f5f0;
}

.ie-vogue-feature__grid,
.ie-vogue-product__layout {
  display: grid;
  align-items: start;
  gap: clamp(28px, 4vw, 62px);
}

.ie-vogue-feature__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
}

.ie-vogue-feature__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ie-vogue-feature__image,
.ie-vogue-feature__thumb,
.ie-demo-card__media,
.ie-vogue-product__thumbs span {
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.55), transparent 14%),
    radial-gradient(circle at 72% 72%, rgba(199, 166, 107, 0.42), transparent 24%),
    linear-gradient(135deg, #efe4d5, #a88b6d 54%, #2c2926);
}

.ie-vogue-feature__image--large {
  min-height: 620px;
  grid-column: span 4;
}

.ie-vogue-feature__thumb {
  min-height: 154px;
}

.ie-vogue-feature__summary {
  padding-top: 22px;
}

.ie-vogue-feature h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 70px);
}

.ie-vogue-feature__summary p,
.ie-vogue-product__subtitle,
.ie-vogue-tabs__panel p,
.ie-vogue-editorial p,
.ie-vogue-footer__brand p {
  color: #696960;
}

.ie-vogue-feature__summary p {
  margin: 22px 0;
  font-size: 17px;
}

.ie-vogue-rating,
.ie-vogue-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ie-vogue-rating {
  margin: 20px 0;
}

.ie-vogue-rating span,
.ie-vogue-card__rating span {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #c7a66b;
}

.ie-vogue-rating strong {
  margin-left: 8px;
  color: #44423d;
  font-size: 14px;
}

.ie-vogue-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.ie-vogue-stats div {
  padding: 18px;
  border: 1px solid #ddd6c8;
  background: #fff;
}

.ie-vogue-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.ie-vogue-stats span {
  color: #8b887f;
  font-weight: 800;
  text-transform: uppercase;
}

.ie-vogue-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.ie-vogue-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.ie-vogue-section-head > a {
  border-bottom: 1px solid #171714;
  font-weight: 900;
  text-transform: uppercase;
}

.ie-vogue-product-grid,
.vs-results-grid.ie-vogue-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.ie-vogue-card,
.ie-demo-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ie-vogue-card .vs-profile-card__media,
.ie-demo-card .vs-profile-card__media {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  background: #ebe6dc;
}

.ie-vogue-card .vs-profile-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.ie-vogue-card:hover .vs-profile-card__media img {
  transform: scale(1.04);
}

.ie-vogue-card .vs-profile-card__body,
.ie-demo-card .vs-profile-card__body {
  padding: 16px 0 0;
  background: transparent;
}

.ie-vogue-card .vs-profile-card__body h2,
.ie-demo-card .vs-profile-card__body h2 {
  margin: 8px 0 6px;
  color: #191916;
  font-size: 22px;
}

.ie-vogue-card .vs-profile-card__eyebrow,
.ie-demo-card .vs-profile-card__eyebrow {
  color: #8a7658;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ie-vogue-card .vs-meta span,
.ie-demo-card .vs-meta span {
  border: 1px solid #ddd6c8;
  border-radius: 0;
  background: #fff;
}

.ie-vogue-card__quick {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  display: grid;
  place-items: center;
  transform: translateY(14px);
  opacity: 0;
  background: #171714;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ie-vogue-card:hover .ie-vogue-card__quick {
  transform: translateY(0);
  opacity: 1;
}

.ie-demo-card__media {
  display: grid;
  place-items: start;
}

.ie-vogue-editorial__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ie-vogue-editorial article {
  padding-top: 22px;
  border-top: 1px solid #cfc7b7;
}

.ie-vogue-editorial span {
  color: #9d8763;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
}

.ie-vogue-editorial h3 {
  margin: 16px 0 10px;
  font-size: 31px;
}

.ie-vogue-shop-hero,
.ie-vogue-product-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.62), transparent 13%),
    radial-gradient(circle at 70% 64%, rgba(199, 166, 107, 0.48), transparent 27%),
    linear-gradient(110deg, #cbb797, #7b6858 52%, #26231f);
  color: #fff;
}

.ie-vogue-product-hero {
  min-height: 320px;
}

.ie-vogue-shop-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ie-vogue-shop-hero h1,
.ie-vogue-product-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(42px, 6vw, 88px);
}

.ie-vogue-breadcrumb {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.ie-vogue-shop__layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.ie-vogue-sidebar {
  display: grid;
  gap: 32px;
}

.ie-vogue-sidebar__widget {
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d1c2;
}

.ie-vogue-sidebar__widget h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.ie-vogue-sidebar .vs-filter-block {
  margin-bottom: 14px;
}

.ie-vogue-sidebar .vs-filter-block span {
  color: #6d665c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ie-vogue-sidebar input,
.ie-vogue-sidebar select {
  border-radius: 0;
  background: #fff;
}

.ie-vogue-widget-links {
  display: grid;
  gap: 12px;
}

.ie-vogue-widget-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #5f5b54;
}

.ie-vogue-widget-links b {
  color: #171714;
}

.ie-vogue-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ie-vogue-tag-cloud a {
  padding: 8px 12px;
  border: 1px solid #d9d1c2;
  background: #fff;
  color: #5f5b54;
  font-size: 13px;
  font-weight: 800;
}

.ie-vogue-shop__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d1c2;
}

.ie-vogue-shop__toolbar span {
  color: #8b887f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ie-vogue-shop__toolbar strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.ie-vogue-view-buttons {
  display: flex;
  gap: 8px;
}

.ie-vogue-view-buttons button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d9d1c2;
  background: #fff;
  color: #171714;
  font-weight: 900;
  cursor: pointer;
}

.ie-vogue-view-buttons .is-active {
  background: #171714;
  color: #fff;
}

.ie-vogue-active-filters {
  margin-bottom: 24px;
  border-radius: 0;
}

.ie-vogue-product__layout {
  grid-template-columns: 270px minmax(0, 0.92fr) minmax(360px, 0.86fr);
}

.ie-vogue-product__sidebar {
  position: sticky;
  top: 24px;
}

.ie-vogue-product__main-image {
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ebe6dc;
}

.ie-vogue-product__main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ie-vogue-product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.ie-vogue-product__thumbs img,
.ie-vogue-product__thumbs span {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.ie-vogue-product__summary {
  padding-top: 14px;
}

.ie-vogue-product__summary h1 {
  margin: 18px 0 8px;
  color: #191916;
  font-size: clamp(40px, 4.5vw, 64px);
}

.ie-vogue-product__subtitle {
  margin: 18px 0 26px;
  font-size: 18px;
}

.ie-vogue-product__actions {
  margin-bottom: 18px;
}

.ie-vogue-product-tabs {
  margin-top: 54px;
  border-top: 1px solid #d9d1c2;
}

.ie-vogue-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid #d9d1c2;
}

.ie-vogue-tabs__nav a {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ie-vogue-tabs__panel {
  padding: 30px 0;
  border-bottom: 1px solid #d9d1c2;
}

.ie-vogue-tabs__panel h2 {
  margin: 0 0 16px;
  font-size: 32px;
}

.ie-vogue-footer {
  background: #171714;
  color: #fff;
}

.ie-vogue-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 5vw, 74px);
  padding: 72px 0 54px;
}

.ie-vogue-brand--footer {
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
}

.ie-vogue-brand--footer span {
  color: #fff;
}

.ie-vogue-footer__brand p {
  max-width: 440px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.68);
}

.ie-vogue-social--footer a {
  border-color: rgba(255, 255, 255, 0.28);
}

.ie-vogue-footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.ie-vogue-footer__column h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.ie-vogue-footer__column a {
  color: rgba(255, 255, 255, 0.68);
}

.ie-vogue-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 1240px) {
  .ie-vogue-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 0;
  }

  .ie-vogue-menu,
  .ie-vogue-actions {
    width: 100%;
    justify-content: center;
  }

  .ie-vogue-menu {
    overflow-x: auto;
  }

  .ie-vogue-menu a {
    padding: 12px 0;
  }

  .ie-vogue-menu a::after {
    bottom: 4px;
  }

  .ie-vogue-product__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .ie-vogue-product__sidebar {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ie-vogue-top__row {
    grid-template-columns: 1fr;
    padding: 10px 0;
    text-align: center;
  }

  .ie-vogue-social,
  .ie-vogue-locale {
    justify-content: center;
  }

  .ie-vogue-hero__media,
  .ie-vogue-feature__grid,
  .ie-vogue-shop__layout,
  .ie-vogue-product__layout,
  .ie-vogue-editorial__grid,
  .ie-vogue-footer__top {
    grid-template-columns: 1fr;
  }

  .ie-vogue-categories__grid,
  .ie-vogue-product-grid,
  .vs-results-grid.ie-vogue-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ie-vogue-category:first-child {
    border-left: 0;
  }

  .ie-vogue-product__sidebar {
    grid-template-columns: 1fr;
  }

  .ie-vogue-product__main-image {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .vs-shell {
    width: min(100% - 24px, 1180px);
  }

  .ie-vogue-brand {
    font-size: 42px;
  }

  .ie-vogue-actions,
  .ie-vogue-hero__actions,
  .ie-vogue-feature__actions,
  .ie-vogue-product__actions,
  .ie-vogue-shop__toolbar,
  .ie-vogue-section-head,
  .ie-vogue-footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .ie-vogue-search,
  .ie-vogue-icon-link,
  .ie-vogue-post-link,
  .ie-vogue-button {
    width: 100%;
  }

  .ie-vogue-hero {
    min-height: 620px;
  }

  .ie-vogue-hero h1,
  .ie-vogue-shop-hero h1,
  .ie-vogue-product-hero h1 {
    font-size: 42px;
  }

  .ie-vogue-categories__grid,
  .ie-vogue-product-grid,
  .vs-results-grid.ie-vogue-product-grid,
  .ie-vogue-stats {
    grid-template-columns: 1fr;
  }

  .ie-vogue-category {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid #ddd6c8;
  }

  .ie-vogue-feature__image--large {
    min-height: 420px;
  }

  .ie-vogue-feature__thumb {
    min-height: 96px;
  }

  .ie-vogue-product__main-image {
    min-height: 430px;
  }
}

/* UI audit fixes: keep the Vogue layout stable across real browser widths. */
html,
body.ieescorts-theme {
  overflow-x: hidden;
}

.ie-vogue-nav {
  min-height: 82px;
  grid-template-columns: 250px minmax(410px, 1fr) 340px;
  gap: 18px;
}

.ie-vogue-brand {
  font-size: clamp(40px, 3.25vw, 54px);
}

.ie-vogue-menu {
  justify-content: flex-start;
  gap: clamp(18px, 2vw, 30px);
  font-size: 14px;
}

.ie-vogue-menu a {
  padding: 28px 0;
}

.ie-vogue-menu a::after {
  bottom: 18px;
}

.ie-vogue-actions {
  min-width: 0;
  gap: 8px;
}

.ie-vogue-search {
  width: 176px;
  min-width: 0;
}

.ie-vogue-search input {
  min-width: 0;
}

.ie-vogue-search button,
.ie-vogue-icon-link,
.ie-vogue-post-link {
  padding-inline: 12px;
  font-size: 13px;
}

.ie-vogue-post-link {
  min-width: 92px;
  color: #fff !important;
}

.ie-vogue-ticker {
  overflow: hidden;
}

.ie-vogue-ticker__track {
  width: 100%;
  min-width: 0;
  justify-content: space-between;
  gap: 18px;
}

.ie-vogue-ticker a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ie-vogue-hero {
  min-height: clamp(500px, 58vh, 650px);
}

.ie-vogue-hero h1 {
  font-size: clamp(54px, 6vw, 86px);
}

.ie-vogue-shop-hero {
  min-height: 300px;
}

.ie-vogue-product-hero {
  min-height: 260px;
}

.ie-vogue-shop-hero h1,
.ie-vogue-product-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
}

.ie-vogue-product {
  padding-top: clamp(44px, 5vw, 72px);
}

.ie-vogue-product__layout {
  grid-template-columns: 260px minmax(310px, 0.88fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 3vw, 44px);
}

.ie-vogue-product__main-image {
  min-height: 520px;
}

.ie-vogue-product__summary {
  padding-top: 0;
}

.ie-vogue-product__summary h1 {
  font-size: clamp(38px, 4vw, 56px);
}

.vs-profile-avatar {
  min-height: inherit;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .ie-vogue-nav {
    grid-template-columns: 220px minmax(360px, 1fr) 300px;
    gap: 14px;
  }

  .ie-vogue-brand {
    font-size: 42px;
  }

  .ie-vogue-menu {
    gap: 18px;
    font-size: 13px;
  }

  .ie-vogue-search {
    width: 148px;
  }
}

@media (max-width: 1240px) and (min-width: 981px) {
  .ie-vogue-nav {
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-areas:
      "brand actions"
      "menu menu";
    justify-items: stretch;
    row-gap: 0;
    padding: 12px 0;
  }

  .ie-vogue-brand {
    grid-area: brand;
  }

  .ie-vogue-menu {
    grid-area: menu;
    width: 100%;
    justify-content: center;
    overflow: hidden;
  }

  .ie-vogue-actions {
    grid-area: actions;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  .ie-vogue-nav {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .ie-vogue-menu {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .ie-vogue-actions {
    width: 100%;
    justify-content: center;
  }

  .ie-vogue-search {
    width: min(100%, 360px);
  }

  .ie-vogue-ticker__track {
    justify-content: flex-start;
    overflow: hidden;
  }

  .ie-vogue-ticker a {
    flex: 0 0 auto;
  }

  .ie-vogue-product__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ie-vogue-top__row {
    gap: 8px;
  }

  .ie-vogue-top__promo strong {
    letter-spacing: 0.08em;
  }

  .ie-vogue-menu {
    justify-content: flex-start;
    gap: 22px;
  }

  .ie-vogue-menu a {
    padding: 8px 0;
  }

  .ie-vogue-hero {
    min-height: 540px;
  }

  .ie-vogue-shop-hero,
  .ie-vogue-product-hero {
    min-height: 230px;
  }

  .ie-vogue-product__main-image {
    min-height: 360px;
  }
}

/* Second UI audit pass: remove remaining desktop/mobile rough edges. */
.ie-vogue-search {
  width: 218px;
}

.ie-vogue-button--light {
  color: #171714 !important;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .ie-vogue-search {
    width: 180px;
  }
}

@media (max-width: 640px) {
  .ie-vogue-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    overflow: visible;
    padding-bottom: 0;
  }

  .ie-vogue-menu a {
    padding: 8px 0;
    font-size: 13px;
  }

  .ie-vogue-search {
    width: 100%;
  }

  .ie-vogue-ticker__track {
    min-height: 42px;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding-inline: 16px;
  }

  .ie-vogue-ticker a {
    display: none;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .ie-vogue-ticker a:first-child {
    display: block;
  }

  .ie-vogue-hero h1,
  .ie-vogue-shop-hero h1,
  .ie-vogue-product-hero h1 {
    font-size: 38px;
  }
}
