/* ── LISTING CARD ── */
.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,180,131,0.5);
}
.listing-card-img {
  height: 200px;
  background: linear-gradient(135deg, #3A3530, #5A4E46);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}
.listing-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.listing-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
}
.listing-card-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  border: none;
  z-index: 1;
  transition: transform 0.2s;
}
.listing-card-fav:hover { transform: scale(1.15); }
.listing-card-fav.active { color: #E24B4A; }

.listing-card-body { padding: 16px 18px; }
.listing-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.listing-card-cat {
  font-size: 11px;
  color: var(--gold-d);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.listing-card-rating {
  font-size: 12px;
  color: var(--muted);
}
.listing-card-rating b { color: var(--dark); font-weight: 500; }
.listing-card-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.listing-card-loc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 4px;
}
.listing-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.listing-card-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--rose-d);
}
.listing-card-price sup {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

/* ── CATEGORY CARD ── */
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-d), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose);
}
.cat-card:hover::after { opacity: 1; }
.cat-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}
.cat-card-name { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.cat-card-count { font-size: 11px; color: var(--muted); }

/* ── FILTER CHIPS ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: all 0.2s;
}
.filter-chip:hover   { border-color: var(--gold); color: var(--gold-d); }
.filter-chip.active  { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── WHY US CARDS ── */
.why-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--rose);
  box-shadow: var(--shadow);
}
.why-card-icon { font-size: 36px; margin-bottom: 16px; }
.why-card-title { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card-text  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── STEP CARDS ── */
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.step-card-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-d);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-card-icon { font-size: 32px; margin-bottom: 14px; }
.step-card-title { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card-text  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-card-arrow {
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--border);
  z-index: 1;
}

/* ── LISTINGS GRID ── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .listings-grid { grid-template-columns: 1fr; }
}
