cat > public_html/css/user-favorites.css << 'CSSEOF'
.favorites-container { max-width: 1400px; margin: 0 auto; padding: 2rem 1rem; }
.favorites-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid #e5e7eb; }
.favorites-title { font-size: 2rem; font-weight: 700; color: #1f2937; }
.favorites-count { font-size: 0.875rem; color: #6b7280; margin-left: 1rem; }
.favorites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.favorite-card { background: white; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: all 0.3s; position: relative; }
.favorite-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.15); transform: translateY(-4px); }
.favorite-image { width: 100%; height: 220px; object-fit: cover; }
.favorite-content { padding: 1.25rem; }
.favorite-price { font-size: 1.5rem; font-weight: 700; color: #0ea5e9; margin-bottom: 0.5rem; }
.favorite-title { font-size: 1rem; font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; }
.favorite-location { font-size: 0.875rem; color: #6b7280; margin-bottom: 1rem; }
.favorite-specs { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid #e5e7eb; font-size: 0.875rem; color: #4b5563; }
.empty-favorites { text-align: center; padding: 4rem 2rem; }
.empty-icon { font-size: 4rem; color: #d1d5db; margin-bottom: 1rem; }
.empty-title { font-size: 1.5rem; font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; }
.empty-text { color: #6b7280; margin-bottom: 2rem; }