/* ============================================
   Fiestador overrides — DOAR features care NU sunt in template
   (chat bubbles, fav heart, wizard, partner sidebar)
   NU adaugam aici nimic care override-uieste template
   ============================================ */

/* Chat bubbles (pagina conversation) */
.chat-bubble { word-wrap: break-word; }
.chat-window { max-height: 60vh; overflow-y: auto; padding: 1rem; background: #fafbfc; border: 1px solid #e3e8ee; border-radius: .5rem; }

/* Favorite heart in card */
.fav-toggle { font-size: 1.25rem; line-height: 1; color: #6c757d; border: 0; background: none; }
.fav-toggle:hover { color: #dc3545; }
.fav-toggle .bi-heart-fill { color: #dc3545; }

/* Wizard progress (register-partner) */
.wizard-steps { display: flex; gap: .25rem; margin-bottom: 1.5rem; }
.wizard-step { flex: 1; height: 6px; background: #e9ecef; border-radius: 3px; }
.wizard-step.active { background: #bd0871; }
.wizard-step.done   { background: #198754; }

/* Upload thumb (partner gallery) */
.upload-thumb { width: 100px; height: 100px; object-fit: cover; border-radius: .35rem; border: 1px solid #e3e8ee; }

/* Empty state (lists fara date) */
.empty-state { text-align: center; padding: 3rem 1rem; color: #6c757d; }
.empty-state i { font-size: 3rem; opacity: .35; }

/* Auth pages (login, register, forgot/reset password, verify-email) — bg in spatele formularului */
.auth-bg { background: #F9F9F9; }

/* Despre — read more toggle (folosit in business.php) */
.collapsed-text-unit.expanded { max-height: 4000px !important; }
.collapsed-text-unit:not(.expanded) {
  max-height: 220px;
  overflow: hidden;
  position: relative;
}
.collapsed-text-unit:not(.expanded)::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, #fff); pointer-events: none;
}
.read-more-link-text { display: inline-block; margin-top: 10px; color: #bd0871; font-weight: 600; text-decoration: none; cursor: pointer; }
