/*
================================================================================
THE MILC LISTRedesign - Unified Style Sheet (A Beautiful Mess Aesthetic v2.0)
================================================================================
Cream Background: #FAF7F2
Brand Purple: #8541FF
Near-Black: #2C2C2A
Lora (serif headings) + Jost (sans body/labels)
No rounded corners, clean solid borders.
================================================================================
*/

/* ── DESIGN SYSTEM VARIABLES ── */
:root {
  --brand-purple: #8541FF;
  --dark-purple: #5C1FD4;
  --light-purple: #EDE8FF;
  --cream: #FAF7F2;
  --near-black: #2C2C2A;
  --mid-gray: #888780;
  --border-gray: #D3D1C7;
  
  /* Category backgrounds */
  --peach-bg: #FAEEDA;
  --sage-bg: #EAF3DE;
  --rose-bg: #FBEAF0;
  --sky-bg: #E6F1FB;
  --warm-bg: #F1EFE8;
  --mint-bg: #E1F5EE;
  --lilac-bg: #F3EEFF;
}

/* ── RESET & GLOBAL STYLES ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--near-black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
button {
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
input, select, textarea {
  font-family: 'Jost', sans-serif;
}

/* ── LAYOUT FRAMEWORK ── */

/* Navigation Header */
.nav {
  background: var(--cream);
  border-bottom: 1.5px solid var(--near-black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo a {
  display: block;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
  font-weight: 400;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--brand-purple);
}
.btn-signin {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--near-black);
  padding: 9px 20px;
  flex-shrink: 0;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-signin:hover {
  background: var(--brand-purple);
  color: var(--cream);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--near-black);
  transition: all 0.25s ease-in-out;
}
.mobile-menu-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-bottom: 1.5px solid var(--near-black);
}
.mobile-menu-overlay.open {
  transform: translateY(0);
}
.mobile-menu-overlay a {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--near-black);
  font-weight: 500;
}
.mobile-menu-overlay a:hover {
  color: var(--brand-purple);
}

/* Global Footer */
footer {
  background: var(--cream);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid var(--near-black);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo img {
  height: 28px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.footer-links a:hover {
  color: var(--brand-purple);
}
.footer-copy {
  font-size: 11px;
  color: #B4B2A9;
}

/* ── HOMEPAGE COMPONENTS ── */

/* Hero */
.hero {
  padding: 52px 40px 48px;
  text-align: center;
  border-bottom: 1.5px solid var(--near-black);
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: 54px;
  font-weight: 500;
  font-style: italic;
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: #5F5E5A;
  line-height: 1.8;
  max-width: 440px;
  margin: 0 auto 32px;
}
.hero-search {
  display: flex;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
  border: 1.5px solid var(--near-black);
  background: var(--cream);
}
.hero-search input {
  flex: 1;
  font-size: 13px;
  padding: 13px 18px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--near-black);
}
.hero-search input::placeholder {
  color: #B4B2A9;
  letter-spacing: 0.04em;
}
.hero-search button {
  background: var(--near-black);
  color: var(--cream);
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  height: 100%;
}
.hero-search button:hover {
  background: var(--brand-purple);
}

/* Section labels & ornaments */
.section-label {
  padding: 28px 10px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.sl-line {
  flex: 1;
  height: 1px;
  background: var(--border-gray);
}
.sl-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  white-space: nowrap;
  font-weight: 500;
}
.sl-diamond {
  width: 6px;
  height: 6px;
  background: var(--brand-purple);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.div-ornament {
  padding: 28px 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.div-line {
  flex: 1;
  height: 1px;
  background: var(--border-gray);
}
.div-diamond {
  width: 6px;
  height: 6px;
  background: var(--brand-purple);
  transform: rotate(45deg);
}

/* Popular Listings Grid */
.pop-grid {
  padding: 16px 40px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pcard {
  background: #fff;
  border: 1px solid #E8E4DF;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  border-color: var(--brand-purple);
}
.pcard:hover .pcard-title {
  color: var(--brand-purple);
}
.pcard-img {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pcard-img.purple-bg { background: var(--light-purple); }
.pcard-img.peach-bg  { background: var(--peach-bg); }
.pcard-img.sage-bg   { background: var(--sage-bg); }
.pcard-img.rose-bg   { background: var(--rose-bg); }
.pcard-img.sky-bg    { background: var(--sky-bg); }
.pcard-img.warm-bg   { background: var(--warm-bg); }
.pcard-img.mint-bg   { background: var(--mint-bg); }
.pcard-img.lilac-bg  { background: var(--lilac-bg); }

.pcard-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pcard-icon-wrap .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purple-bg .ic { background: rgba(133,65,255,.15); }
.peach-bg  .ic { background: rgba(133,79,11,.12); }
.sage-bg   .ic { background: rgba(59,109,17,.12); }
.rose-bg   .ic { background: rgba(153,53,86,.12); }
.sky-bg    .ic { background: rgba(24,95,165,.12); }
.warm-bg   .ic { background: rgba(95,94,90,.12); }
.mint-bg   .ic { background: rgba(15,110,86,.12); }
.lilac-bg  .ic { background: rgba(100,50,200,.12); }

.pcard-icon-wrap .ic svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke-width: 1.5;
}
.purple-bg .ic svg { stroke: var(--brand-purple); }
.peach-bg  .ic svg { stroke: #854F0B; }
.sage-bg   .ic svg { stroke: #3B6D11; }
.rose-bg   .ic svg { stroke: #993556; }
.sky-bg    .ic svg { stroke: #185FA5; }
.warm-bg   .ic svg { stroke: #5F5E5A; }
.mint-bg   .ic svg { stroke: #0F6E56; }
.lilac-bg  .ic svg { stroke: #6432C8; }

.ic-lbl {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 500;
}
.purple-bg .ic-lbl { color: var(--brand-purple); }
.peach-bg  .ic-lbl { color: #854F0B; }
.sage-bg   .ic-lbl { color: #3B6D11; }
.rose-bg   .ic-lbl { color: #993556; }
.sky-bg    .ic-lbl { color: #185FA5; }
.warm-bg   .ic-lbl { color: #5F5E5A; }
.mint-bg   .ic-lbl { color: #0F6E56; }
.lilac-bg  .ic-lbl { color: #6432C8; }

.pcard-body {
  padding: 8px 10px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pcard-cat {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 2px;
  font-weight: 500;
}
.pcard-title {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color 0.15s;
}
.pcard-meta {
  font-size: 10px;
  color: var(--mid-gray);
}
.pcard-age {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #F1EFE8;
  color: #5F5E5A;
  padding: 2px 6px;
  margin-top: 6px;
  align-self: flex-start;
}

.view-all-row {
  padding: 20px 40px 0;
  display: flex;
  justify-content: center;
}
.view-all {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--near-black);
  border-bottom: 1.5px solid var(--near-black);
  padding-bottom: 2px;
  transition: all 0.2s;
  font-weight: 500;
}
.view-all:hover {
  color: var(--brand-purple);
  border-color: var(--brand-purple);
}

/* Category Strip */
.cat-strip {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--near-black);
  border-bottom: 1.5px solid var(--near-black);
  margin-top: 28px;
}
.cat-item {
  padding: 22px 12px;
  border-right: 1px solid var(--border-gray);
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
}
.cat-item:last-child {
  border-right: none;
}
.cat-item:hover {
  background: #F1EFE8;
}
.cat-item-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.cat-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-purple);
  fill: none;
  stroke-width: 1.5;
}
.cat-item-title {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--near-black);
  margin-bottom: 3px;
}
.cat-item-count {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

/* Blog Section */
.blog-section {
  padding: 28px 40px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.bcard {
  background: #fff;
  border: 1px solid var(--border-gray);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 16px;
  transition: all 0.2s ease;
}
.bcard:hover {
  border-color: var(--near-black);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.bcard:hover .bcard-title {
  color: var(--brand-purple);
}
.bcard-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.bcard-img.sky-bg    { background: var(--sky-bg); }
.bcard-img.warm-bg   { background: var(--warm-bg); }
.bcard-img.peach-bg  { background: var(--peach-bg); }
.bcard-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bcard-icon-wrap .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard-icon-wrap .ic svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 1.5;
}

.blog-card { height: 140px; padding: 1em; }
.lcard-top.blog-card-has-thumb,
.bcard-img.blog-card-has-thumb,
.blog-card.blog-card-has-thumb {
  height: 180px !important;
  max-height: 180px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  display: block !important;
}

.lcard-top.blog-card-has-thumb img,
.bcard-img.blog-card-has-thumb img,
img.blog-cover-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.3s ease;
}
.lcard:hover .blog-cover-img, .bcard:hover .blog-cover-img { transform: scale(1.04); }

.sky-bg  .bcard-icon-wrap .ic { background: rgba(24,95,165,.12); } .sky-bg  .bcard-icon-wrap .ic svg { stroke: #185FA5; } .sky-bg  .bcard-icon-wrap .ic-lbl { color: #185FA5; }
.warm-bg .bcard-icon-wrap .ic { background: rgba(95,94,90,.12); }  .warm-bg .bcard-icon-wrap .ic svg { stroke: #5F5E5A; }  .warm-bg .bcard-icon-wrap .ic-lbl { color: #5F5E5A; }
.peach-bg .bcard-icon-wrap .ic { background: rgba(133,79,11,.12); } .peach-bg .bcard-icon-wrap .ic svg { stroke: #854F0B; } .peach-bg .bcard-icon-wrap .ic-lbl { color: #854F0B; }

.bcard-cat {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 4px;
  font-weight: 500;
}
.bcard-title {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.4;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.bcard-meta {
  font-size: 11px;
  color: var(--mid-gray);
}
.bcard-excerpt {
  font-size: small;
  color: var(--near-black);;
}

/* Testimonials */
.testi-sec {
  background: var(--near-black);
  padding: 44px 40px;
  margin-top: 28px;
}
.testi-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 26px;
  text-align: center;
  font-weight: 500;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
}
.tq {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-style: italic;
  color: var(--brand-purple);
  line-height: 0.8;
  margin-bottom: 12px;
  display: block;
}
.ttext {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 14px;
}
.tauthor {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Newsletter ("The Drop" - Constant Contact integrated markup) */
.nl-sec {
  padding: 52px 40px;
  text-align: center;
  border-bottom: 1.5px solid var(--near-black);
}
.nl-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
  font-weight: 500;
}
.nl-title {
  font-family: 'Lora', serif;
  font-size: 38px;
  font-style: italic;
  color: var(--near-black);
  margin-bottom: 10px;
}
.nl-sub {
  font-size: 13px;
  font-weight: 300;
  color: #5F5E5A;
  line-height: 1.7;
  margin-bottom: 26px;
}
.nl-form {
  display: flex;
  max-width: 380px;
  margin: 0 auto;
  border: 1.5px solid var(--near-black);
}
.nl-form input {
  flex: 1;
  font-size: 13px;
  padding: 13px 16px;
  border: none;
  outline: none;
  background: var(--cream);
  color: var(--near-black);
}
.nl-form input::placeholder {
  color: #B4B2A9;
}
.nl-form button {
  background: var(--near-black);
  color: var(--cream);
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nl-form button:hover {
  background: var(--brand-purple);
}

/* Social strip */
.soc-bar {
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid var(--near-black);
}
.soc-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-right: 4px;
  font-weight: 500;
}
.spill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
  padding: 8px 18px;
  border: 1.5px solid var(--near-black);
  cursor: pointer;
  transition: all 0.15s;
}
.spill:hover {
  background: var(--near-black);
  color: var(--cream);
}
.spill svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ── CATEGORY ARCHIVE PAGES ── */

.page-hero {
  background: var(--cream);
  padding: 40px 40px 36px;
  border-bottom: 1.5px solid var(--near-black);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--mid-gray);
}
.breadcrumb a:hover {
  color: var(--brand-purple);
}
.bc-sep {
  color: var(--border-gray);
}
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 500;
  font-style: italic;
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 14px;
  font-weight: 300;
  color: #5F5E5A;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 580px;
}

/* Subcategory row */
.subcat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.subcat {
  padding: 7px 16px;
  border: 1.5px solid var(--border-gray);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--near-black);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-block;
}
.subcat.active {
  background: var(--near-black);
  color: var(--cream);
  border-color: var(--near-black);
}
.subcat:hover:not(.active) {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}

/* Category Filter Bar */
.filter-bar {
  background: var(--cream);
  border-bottom: 1.5px solid var(--near-black);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.filter-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  white-space: nowrap;
  font-weight: 500;
}
.filter-select {
  font-size: 12px;
  color: var(--near-black);
  padding: 8px 32px 8px 12px;
  border: 1.5px solid var(--border-gray);
  background: var(--cream);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888780' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.filter-select:focus {
  border-color: var(--brand-purple);
}
.filter-div {
  width: 1px;
  height: 22px;
  background: var(--border-gray);
  margin: 0 4px;
}
.filter-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--mid-gray);
  white-space: nowrap;
}
.filter-count strong {
  color: var(--near-black);
  font-weight: 500;
}

/* Content Split Layout */
.content-area {
  display: grid;
  grid-template-columns: 1fr 220px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Listings Grid */
.listings {
  padding: 28px 32px 28px 0;
  border-right: 1.5px solid var(--border-gray);
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.search-results .listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.search-results .lcard {
  min-height: 220px;
}
.search-results .lcard-top {
  height: 78px;
}
.search-results .lcard-body {
  padding: 10px 12px 8px;
}
.search-results .lcard-title {
  font-size: 13px;
}
.search-results .lcard-meta {
  font-size: 10px;
}
.search-results .lcard-footer {
  padding: 8px 12px;
}

/* Listing card */
.lcard {
  background: var(--cream);
  border: 1px solid var(--border-gray);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.lcard:hover {
  border-color: var(--near-black);
}
.lcard:hover .lcard-title {
  color: var(--brand-purple);
}
.lcard-top {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
}
.lcard-top.purple-bg { background: var(--light-purple); }
.lcard-top.peach-bg  { background: var(--peach-bg); }
.lcard-top.sage-bg   { background: var(--sage-bg); }
.lcard-top.rose-bg   { background: var(--rose-bg); }
.lcard-top.sky-bg    { background: var(--sky-bg); }
.lcard-top.warm-bg   { background: var(--warm-bg); }
.lcard-top.mint-bg   { background: var(--mint-bg); }
.lcard-top.lilac-bg  { background: var(--lilac-bg); }

.lcard-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lcard-icon-wrap .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purple-bg .ic { background: rgba(133,65,255,0.15); }
.peach-bg  .ic { background: rgba(133,79,11,0.12); }
.sage-bg   .ic { background: rgba(59,109,17,0.12); }
.rose-bg   .ic { background: rgba(153,53,86,0.12); }
.sky-bg    .ic { background: rgba(24,95,165,0.12); }
.warm-bg   .ic { background: rgba(95,94,90,0.12); }
.mint-bg   .ic { background: rgba(15,110,86,0.12); }
.lilac-bg  .ic { background: rgba(100,50,200,0.12); }

.lcard-icon-wrap .ic svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.5;
}
.purple-bg .ic svg { stroke: var(--brand-purple); }
.peach-bg  .ic svg { stroke: #854F0B; }
.sage-bg   .ic svg { stroke: #3B6D11; }
.rose-bg   .ic svg { stroke: #993556; }
.sky-bg    .ic svg { stroke: #185FA5; }
.warm-bg   .ic svg { stroke: #5F5E5A; }
.mint-bg   .ic svg { stroke: #0F6E56; }
.lilac-bg  .ic svg { stroke: #6432C8; }

.lcard-icon-wrap .ic-lbl {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  font-weight: 500;
}
.purple-bg .ic-lbl { color: var(--brand-purple); }
.peach-bg  .ic-lbl { color: #854F0B; }
.sage-bg   .ic-lbl { color: #3B6D11; }
.rose-bg   .ic-lbl { color: #993556; }
.sky-bg    .ic-lbl { color: #185FA5; }
.warm-bg   .ic-lbl { color: #5F5E5A; }
.mint-bg   .ic-lbl { color: #0F6E56; }
.lilac-bg  .ic-lbl { color: #6432C8; }

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
}
.badge.new {
  background: #0F6E56;
  color: #fff;
}
.badge.popular {
  background: var(--brand-purple);
  color: #fff;
}
.save-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: var(--cream);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.save-btn:hover {
  border-color: var(--brand-purple);
}
.save-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-purple);
  fill: none;
  transition: fill 0.15s;
}
.save-btn.saved svg {
  fill: var(--brand-purple);
}

.lcard-body {
  padding: 12px 14px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.lcard-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.ltag {
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 8px;
  background: #F1EFE8;
  color: #5F5E5A;
}
.ltag.age {
  background: var(--light-purple);
  color: var(--dark-purple);
}
.age-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lcard-title {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 7px;
  line-height: 1.35;
  transition: color 0.15s;
}
.lcard-meta {
  font-size: 11px;
  color: var(--mid-gray);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}
.lcard-meta-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lcard-meta-row svg {
  width: 12px;
  height: 12px;
  stroke: var(--mid-gray);
  fill: none;
  flex-shrink: 0;
}

.lcard-footer {
  padding: 9px 14px;
  border-top: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.lcard-link {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
  font-weight: 500;
}
.lcard-link:hover {
  gap: 7px;
}
.lcard-link svg {
  width: 12px;
  height: 12px;
  stroke: var(--brand-purple);
  fill: none;
}
.lcard-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--mid-gray);
}
.lcard-rating svg {
  width: 12px;
  height: 12px;
  stroke: #EF9F27;
  fill: #EF9F27;
}

/* Pagination */
.pagination {
  padding: 24px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.page-btn {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--border-gray);
  font-size: 12px;
  color: var(--mid-gray);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.page-btn.active {
  background: var(--near-black);
  color: var(--cream);
  border-color: var(--near-black);
}
.page-btn:hover:not(.active) {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}
.page-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
}

/* Sidebar Components */
.sidebar {
  padding: 28px 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sb-title {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
  font-weight: 500;
}
.sb-divider {
  height: 1.5px;
  background: var(--border-gray);
}

/* Age chips sidebar widget */
.age-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.age-chip {
  padding: 7px 4px;
  border: 1.5px solid var(--border-gray);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--near-black);
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.age-chip.active {
  background: var(--near-black);
  color: var(--cream);
  border-color: var(--near-black);
}
.age-chip:hover:not(.active) {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}

/* Neighbourhood list widget */
.nb-list {
  display: flex;
  flex-direction: column;
}
.nb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 12px;
  color: var(--mid-gray);
  cursor: pointer;
  transition: color 0.15s;
}
.nb-item:last-child {
  border-bottom: none;
}
.nb-item:hover, .nb-item.active {
  color: var(--brand-purple);
}
.nb-item.active {
  font-weight: 500;
}
.nb-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.nb-count {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.06em;
  background: #F1EFE8;
  color: var(--mid-gray);
  padding: 1px 7px;
}

/* ── LISTING DETAIL PAGE ── */

.breadcrumb-bar {
  padding: 16px 40px;
  border-bottom: 1px solid var(--border-gray);
  background: var(--cream);
}
.breadcrumb-bar .breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
}
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.left-col {
  /* main detail wrapper */
}
.listing-header {
  margin-bottom: 28px;
}
.listing-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.listing-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.listing-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke-width: 1.5;
}
.listing-cat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-purple);
  font-weight: 500;
}
.listing-title {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: 10px;
}
.listing-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.meta-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #5F5E5A;
}
.meta-chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--mid-gray);
  fill: none;
  flex-shrink: 0;
}
.age-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--light-purple);
  color: var(--dark-purple);
  padding: 3px 10px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F6E56;
  background: var(--sage-bg);
  padding: 3px 10px;
}
.verified-badge svg {
  width: 11px;
  height: 11px;
  stroke: #0F6E56;
  fill: none;
}

/* Action button rows */
.action-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--near-black);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--brand-purple);
}
.btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: var(--cream);
  fill: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--near-black);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1.5px solid var(--border-gray);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}
.btn-outline svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  transition: fill 0.15s;
}
.btn-outline.saved {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}
.btn-outline.saved svg {
  fill: var(--brand-purple);
}

/* Divider card */
.div-orn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}
.dl {
  flex: 1;
  height: 1px;
  background: var(--border-gray);
}
.dd {
  width: 6px;
  height: 6px;
  background: var(--brand-purple);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.about-text {
  font-size: 14px;
  font-weight: 300;
  color: #5F5E5A;
  line-height: 1.85;
}
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #5F5E5A;
  background: #F1EFE8;
  padding: 4px 10px;
}
.map-container {
  width: 100%;
  height: 280px;
  background: #E8E4DF;
  border: 1.5px solid var(--border-gray);
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-address {
  font-size: 12px;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 28px;
}
.map-address svg {
  width: 13px;
  height: 13px;
  stroke: var(--mid-gray);
  fill: none;
}

/* Similar listings widget */
.similar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sim-card {
  background: #F8F5F0;
  border: 1px solid #E8E4DF;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.sim-card:hover {
  border-color: var(--brand-purple);
}
.sim-card:hover .sim-title {
  color: var(--brand-purple);
}
.sim-img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.9);
}
.sim-card.purple-bg .sim-img { background: var(--light-purple); }
.sim-card.peach-bg .sim-img  { background: var(--peach-bg); }
.sim-card.sage-bg .sim-img   { background: var(--sage-bg); }
.sim-card.rose-bg .sim-img   { background: var(--rose-bg); }
.sim-card.sky-bg .sim-img    { background: var(--sky-bg); }
.sim-card.warm-bg .sim-img   { background: var(--warm-bg); }
.sim-card.mint-bg .sim-img   { background: var(--mint-bg); }
.sim-card.lilac-bg .sim-img  { background: var(--lilac-bg); }
.sim-img .ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-img .ic svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke-width: 1.5;
}
.sim-body {
  padding: 7px 10px 10px;
  flex-grow: 1;
}
.sim-cat {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 2px;
  font-weight: 500;
}
.sim-title {
  font-family: 'Lora', serif;
  font-size: 12px;
  color: var(--near-black);
  line-height: 1.3;
  margin-bottom: 2px;
  transition: color 0.15s;
}
.sim-meta {
  font-size: 10px;
  color: var(--mid-gray);
}

/* Sidebar dynamic info widget */
.info-card {
  background: #fff;
  border: 1.5px solid var(--near-black);
  padding: 24px;
  margin-bottom: 16px;
}
.info-card-title {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--near-black);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gray);
}
.info-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.info-row:last-child {
  margin-bottom: 0;
}
.info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.info-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-purple);
  fill: none;
}
.info-label {
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 2px;
  font-weight: 500;
}
.info-value {
  font-size: 13px;
  color: var(--near-black);
  line-height: 1.4;
}
.info-value a {
  color: var(--brand-purple);
  word-break: break-all;
}
.info-value a:hover {
  text-decoration: underline;
}

/* Constant Contact opt-in widget card */
.nl-card {
  background: var(--near-black);
  padding: 24px;
  text-align: center;
}
.nl-kick {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 500;
}
.nl-card .nl-title {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-style: italic;
  color: #fff;
  margin-bottom: 8px;
}
.nl-card .nl-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.nl-card .nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: none;
}
.nl-card .nl-form input {
  font-size: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.nl-card .nl-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.nl-card .nl-form button {
  background: var(--brand-purple);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px;
  transition: background 0.2s;
  width: 100%;
}
.nl-card .nl-form button:hover {
  background: var(--dark-purple);
}

/* ── VISITOR DASHBOARD & ACCOUNTS (page-my-account.php) ── */

/* ══ LOGGED-IN: DASHBOARD VIEW ══ */
.acct-dashboard {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

/* Dashboard hero strip */
.acct-hero {
  border-bottom: 1.5px solid var(--near-black);
  padding: 40px 0 36px;
  margin-bottom: 36px;
}
.acct-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.acct-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-purple);
  font-weight: 500;
  margin-bottom: 10px;
}
.acct-title {
  font-family: 'Lora', serif;
  font-size: 42px;
  font-weight: 500;
  font-style: italic;
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 8px;
}
.acct-sub {
  font-size: 14px;
  font-weight: 300;
  color: #5F5E5A;
}
.acct-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.acct-meta-user {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}
.acct-meta-user svg {
  width: 15px;
  height: 15px;
  stroke: var(--mid-gray);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.acct-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--near-black);
  border: 1.5px solid var(--near-black);
  padding: 8px 16px;
  transition: all 0.2s;
  font-weight: 500;
}
.acct-logout:hover {
  background: var(--near-black);
  color: var(--cream);
}
.acct-logout svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Dashboard body */
.acct-body {
  /* inherits max-width from parent */
}
.acct-count {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gray);
}

/* Empty state */
.acct-empty {
  text-align: center;
  padding: 80px 20px;
  border: 1.5px dashed var(--border-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.acct-empty-icon {
  width: 60px;
  height: 60px;
  background: var(--light-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.acct-empty-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--brand-purple);
  stroke: none;
}
.acct-empty-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--near-black);
}
.acct-empty-sub {
  font-size: 14px;
  font-weight: 300;
  color: #5F5E5A;
  line-height: 1.7;
  max-width: 360px;
}

/* ══ LOGGED-OUT: SPLIT AUTH PANEL ══ */
.acct-auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 128px);
  border-bottom: 1.5px solid var(--near-black);
}

/* Left brand/perks side */
.acct-auth-side {
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.acct-auth-side-inner {
  max-width: 380px;
  width: 100%;
}
.acct-auth-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 20px;
}
.acct-auth-tagline {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 44px;
}
.acct-auth-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acct-auth-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.acct-perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(133,65,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acct-perk-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand-purple);
  fill: none;
  stroke-width: 1.8;
}
.acct-perk-icon svg[d*="M12 21"] { /* heart icon: fill it */
  fill: var(--brand-purple);
  stroke: none;
}

/* Right auth card */
.acct-auth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  background: var(--cream);
  overflow-y: auto;
}

/* Tab switcher */
.acct-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--near-black);
  width: 100%;
  max-width: 440px;
  margin-bottom: 36px;
}
.acct-tab {
  flex: 1;
  padding: 12px 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 500;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.acct-tab.active {
  color: var(--near-black);
  border-bottom-color: var(--brand-purple);
}
.acct-tab:hover:not(.active) {
  color: var(--near-black);
}

/* Auth form panel */
.acct-panel {
  display: none;
  width: 100%;
  max-width: 440px;
  flex-direction: column;
}
.acct-panel.active {
  display: flex;
}
.acct-form-title {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.acct-form-sub {
  font-size: 13px;
  font-weight: 300;
  color: #5F5E5A;
  line-height: 1.7;
  margin-bottom: 28px;
}
.acct-errors {
  background: #FFF1F0;
  border: 1.5px solid #FF6B6B;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.acct-errors p {
  font-size: 12px;
  color: #CC3333;
  line-height: 1.5;
}

/* Form fields */
.acct-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.acct-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.acct-field label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--near-black);
  font-weight: 500;
  margin-bottom: 7px;
}
.acct-field input {
  width: 100%;
  border: 1.5px solid var(--border-gray);
  background: #fff;
  padding: 13px 16px;
  font-size: 13px;
  color: var(--near-black);
  outline: none;
  transition: border-color 0.2s;
}
.acct-field input::placeholder {
  color: #B4B2A9;
}
.acct-field input:focus {
  border-color: var(--brand-purple);
}
.acct-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 10px;
}
.acct-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #5F5E5A;
  cursor: pointer;
}
.acct-remember input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--brand-purple);
  cursor: pointer;
}
.acct-forgot {
  font-size: 12px;
  color: var(--brand-purple);
  transition: text-decoration 0.15s;
}
.acct-forgot:hover {
  text-decoration: underline;
}
.acct-submit {
  width: 100%;
  background: var(--near-black);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px;
  font-weight: 500;
  transition: background 0.2s;
  cursor: pointer;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  border: none;
}
.acct-submit:hover {
  background: var(--brand-purple);
}
.acct-switch {
  font-size: 13px;
  color: #5F5E5A;
  text-align: center;
  line-height: 1.6;
}
.acct-switch-btn {
  color: var(--brand-purple);
  font-size: 13px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  background: none;
  border: none;
  padding: 0;
  font-weight: 500;
  transition: opacity 0.15s;
}
.acct-switch-btn:hover {
  text-decoration: underline;
}

.blog ul {
  padding-left: 2em;
}

/* ── Responsive account layouts ── */
@media (max-width: 860px) {
  .acct-auth-wrap {
    grid-template-columns: 1fr;
  }
  .acct-auth-side {
    padding: 48px 28px;
    min-height: 260px;
    align-items: flex-start;
  }
  .acct-auth-tagline {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .acct-auth-perks {
    display: none; /* clean on mobile */
  }
  .acct-auth-card {
    padding: 40px 24px;
    align-items: stretch;
  }
  .acct-tabs, .acct-panel {
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .acct-dashboard {
    padding: 0 20px 48px;
  }
  .acct-title {
    font-size: 30px;
  }
  .acct-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* ── ANIMATIONS & TRANSITIONS ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade {
  animation: fadeIn 0.25s ease forwards;
}

/* ── RESPONSIVENESS MEDIA QUERIES ── */

/* Homepage mobile layouts */
@media (max-width: 800px) {
  .nav {
    padding: 0 20px;
    height: 60px;
  }
  .nav-logo img {
    height: 36px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 36px 20px 32px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .section-label, .view-all-row, .div-ornament, .blog-section, .soc-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pop-grid {
    padding: 14px 20px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-strip {
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .testi-sec {
    padding: 36px 20px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nl-sec {
    padding: 40px 20px;
  }
  footer {
    padding: 20px;
  }
}

/* Category Page mobile layouts */
@media (max-width: 900px) {
  .page-hero {
    padding: 28px 20px 24px;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .filter-bar {
    padding: 12px 20px;
    flex-wrap: wrap;
  }
  .content-area {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .listings {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1.5px solid var(--border-gray);
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    padding: 24px 0 0;
  }
}

/* Listing Detail Page mobile layouts */
@media (max-width: 860px) {
  .breadcrumb-bar {
    padding: 12px 20px;
  }
  .main {
    grid-template-columns: 1fr;
    padding: 24px 20px 48px;
    gap: 28px;
  }
  .listing-title {
    font-size: 28px;
  }
  .similar-grid {
    grid-template-columns: 1fr;
  }
}
