/* Mendoza de Ensueño — Component Overrides v3 */

/* ── Cancionero Showcase ── */
.mde-cancionero-card {
  background: var(--mde-parchment);
  border: 1px solid rgba(217,119,6,.15);
  padding: 48px;
  border-radius: var(--mde-radius-lg);
  position: relative;
  overflow: hidden;
}
.mde-cancionero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--mde-sol), var(--mde-tinto));
}

/* ── Event Badge ── */
.mde-event-badge {
  background: rgba(217,119,6,.08);
  border: 1px solid rgba(217,119,6,.2);
  color: var(--mde-sol);
  padding: 10px 24px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.mde-event-badge i { color: var(--mde-sol); font-size: 1rem; }

/* ── Parque Status Badge ── */
.mde-parque-status {
  display: inline-block;
  padding: 10px 24px;
  background: #f3ead8;
  border: 1px solid #d9b46a;
  color: var(--mde-tierra);
  border-radius: 999px;
  font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 24px;
}

/* ── Departamento Single Hero ── */
.mde-dept-hero {
  height: 65vh; min-height: 450px;
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
  background-size: cover; background-position: center;
  position: relative; color: #fff;
}
.mde-dept-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(69,26,3,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.mde-dept-hero .mde-container { z-index: 5; }
.mde-dept-hero h1 { color: #fff; }
.mde-dept-content {
  max-width: 800px; margin: 80px auto;
  font-size: 1.1rem; line-height: 1.9;
}

/* ── Price Feature List ── */
.mde-price-features { list-style: none; padding: 0; }
.mde-price-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mde-price-features li i { color: var(--mde-sol); font-size: .8rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .mde-cancionero-card { padding: 32px; }
}
